diff --git a/admin-ui/.dockerignore b/admin-ui/.dockerignore
deleted file mode 100644
index 1194b4f..0000000
--- a/admin-ui/.dockerignore
+++ /dev/null
@@ -1,7 +0,0 @@
-.dockerignore
-docker-compose.yml
-Dockerfile
-build/
-node_modules
-.env
-.gitignore
diff --git a/admin-ui/.env b/admin-ui/.env
deleted file mode 100644
index 4eef91c..0000000
--- a/admin-ui/.env
+++ /dev/null
@@ -1,2 +0,0 @@
-PORT=3001
-REACT_APP_SERVER_URL=http://localhost:3000
\ No newline at end of file
diff --git a/admin-ui/.gitignore b/admin-ui/.gitignore
deleted file mode 100644
index 590b2e0..0000000
--- a/admin-ui/.gitignore
+++ /dev/null
@@ -1,23 +0,0 @@
-# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
-
-# dependencies
-/node_modules
-/.pnp
-.pnp.js
-
-# testing
-/coverage
-
-# production
-/build
-
-# misc
-.DS_Store
-.env.local
-.env.development.local
-.env.test.local
-.env.production.local
-
-npm-debug.log*
-yarn-debug.log*
-yarn-error.log*
diff --git a/admin-ui/Dockerfile b/admin-ui/Dockerfile
deleted file mode 100644
index 9c43e40..0000000
--- a/admin-ui/Dockerfile
+++ /dev/null
@@ -1,51 +0,0 @@
-# multi-stage: base (build)
-FROM node:18.13.0-slim AS base
-
-# instantiate environment variable
-ARG REACT_APP_SERVER_URL=http://localhost:3000
-
-# set the environment variable that points to the server
-ENV REACT_APP_SERVER_URL=$REACT_APP_SERVER_URL
-
-# create directory where the application will be built
-WORKDIR /app
-
-# copy over the dependency manifests, both the package.json
-# and the package-lock.json are copied over
-COPY package*.json ./
-
-# installs packages and their dependencies
-RUN npm install
-
-# copy over the code base
-COPY . .
-
-# create the bundle of the application
-RUN npm run build
-
-# multi-stage: production (runtime)
-FROM nginx:1.22-alpine AS production
-
-# copy over the bundled code from the build stage
-COPY --from=base /app/build /usr/share/nginx/html
-COPY --from=base /app/configuration/nginx.conf /etc/nginx/conf.d/default.conf
-
-# create a new process indication file
-RUN touch /var/run/nginx.pid
-
-# change ownership of nginx related directories and files
-RUN chown -R nginx:nginx /var/run/nginx.pid \
- /usr/share/nginx/html \
- /var/cache/nginx \
- /var/log/nginx \
- /etc/nginx/conf.d
-
-# set user to the created non-privileged user
-USER nginx
-
-# expose a specific port on the docker container
-ENV PORT=80
-EXPOSE ${PORT}
-
-# start the server using the previously build application
-ENTRYPOINT [ "nginx", "-g", "daemon off;" ]
diff --git a/admin-ui/README.md b/admin-ui/README.md
deleted file mode 100644
index 03abb2a..0000000
--- a/admin-ui/README.md
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-# Introduction
-
-This service was generated with Amplication. It serves as the client-side for the generated server component. The client-side consist of a React application with ready-made forms for creating and editing the different data models of the application. It is pre-conffigured to work with the server and comes with the boilerplate and foundation for the client - i.e., routing, navigation, authentication, permissions, menu, breadcrumbs, error handling and much more. Additional information about the admin component and the architecture around it, can be found on the [documentation](https://docs.amplication.com/guides/getting-started) site. This side of the generated project was bootstrapped with [create-react-app](https://github.com/facebook/create-react-app) and built with [react-admin](https://marmelab.com/react-admin/).
-
-
-
-
-
-
-# Getting started
-
-## Step 1: Configuration
-
-Configuration for the client component can be provided through the use of environment variables. These can be passed to the application via the use of the `.env` file in the base directory of the generated service. Below a table can be found which show the different variables that can be passed. These values are provided default values after generation, change them to the desired values.
-
-| Variable | Description | Value |
-| -------------------- | ------------------------------------------------ | ------------------------------ |
-| PORT | the port on which to run the client | 3001 |
-| REACT_APP_SERVER_URL | the url on which the server component is running | http://localhost:[server-port] |
-
-> **Note**
-> Amplication generates default values and stores them under the .env file. It is advised to use some form of secrets manager/vault solution when using in production.
-
-
-## Step 2: Scripts
-
-After configuration of the client the next step would be to run the application. Before running the client side of the component, make sure that the different pre-requisites are met - i.e., npm, docker. Make sure that the server-side of the application is running.
-
-```sh
-# installation of the dependencies
-$ npm install
-
-# starts the application in development mode - available by default under http://localhost:3001 with a pre-configured user with the username "admin" and password "admin"
-$ npm run start
-
-# builds the application in production mode - available under 'build'
-$ npm run build
-
-# removes the single build dependency from the project
-$ npm run eject
-```
diff --git a/admin-ui/configuration/nginx.conf b/admin-ui/configuration/nginx.conf
deleted file mode 100644
index 88dad6e..0000000
--- a/admin-ui/configuration/nginx.conf
+++ /dev/null
@@ -1,11 +0,0 @@
-server_tokens off;
-
-server {
- listen 8080;
- server_name localhost;
- location / {
- root /usr/share/nginx/html;
- index index.html index.htm;
- try_files $uri /index.html;
- }
-}
\ No newline at end of file
diff --git a/admin-ui/package.json b/admin-ui/package.json
deleted file mode 100644
index 576a781..0000000
--- a/admin-ui/package.json
+++ /dev/null
@@ -1,60 +0,0 @@
-{
- "name": "@record/admin",
- "private": true,
- "dependencies": {
- "@apollo/client": "3.6.9",
- "@material-ui/core": "4.12.4",
- "graphql": "15.6.1",
- "lodash": "4.17.21",
- "pluralize": "8.0.0",
- "ra-data-graphql-amplication": "0.0.14",
- "react": "16.14.0",
- "react-admin": "3.19.12",
- "react-dom": "16.14.0",
- "react-scripts": "5.0.0",
- "sass": "^1.39.0",
- "web-vitals": "1.1.2"
- },
- "overrides": {
- "react-scripts": {
- "@svgr/webpack": "6.5.1"
- }
- },
- "scripts": {
- "start": "react-scripts start",
- "build": "react-scripts build",
- "test": "react-scripts test",
- "eject": "react-scripts eject",
- "package:container": "docker build ."
- },
- "eslintConfig": {
- "extends": [
- "react-app",
- "react-app/jest"
- ]
- },
- "browserslist": {
- "production": [
- ">0.2%",
- "not dead",
- "not op_mini all"
- ],
- "development": [
- "last 1 chrome version",
- "last 1 firefox version",
- "last 1 safari version"
- ]
- },
- "devDependencies": {
- "@testing-library/jest-dom": "5.14.1",
- "@testing-library/react": "11.2.7",
- "@testing-library/user-event": "13.2.0",
- "@types/jest": "26.0.16",
- "@types/lodash": "4.14.178",
- "@types/node": "12.20.16",
- "@types/react": "16.14.11",
- "@types/react-dom": "17.0.0",
- "type-fest": "0.13.1",
- "typescript": "4.3.5"
- }
-}
\ No newline at end of file
diff --git a/admin-ui/public/favicon.ico b/admin-ui/public/favicon.ico
deleted file mode 100644
index fcbdcf2..0000000
Binary files a/admin-ui/public/favicon.ico and /dev/null differ
diff --git a/admin-ui/public/index.html b/admin-ui/public/index.html
deleted file mode 100644
index 2bbf9af..0000000
--- a/admin-ui/public/index.html
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
- Record
-
-
-
-
-
-
-
diff --git a/admin-ui/public/logo192.png b/admin-ui/public/logo192.png
deleted file mode 100644
index 1918ff2..0000000
Binary files a/admin-ui/public/logo192.png and /dev/null differ
diff --git a/admin-ui/public/logo512.png b/admin-ui/public/logo512.png
deleted file mode 100644
index 7e7dc74..0000000
Binary files a/admin-ui/public/logo512.png and /dev/null differ
diff --git a/admin-ui/public/manifest.json b/admin-ui/public/manifest.json
deleted file mode 100644
index a9acc14..0000000
--- a/admin-ui/public/manifest.json
+++ /dev/null
@@ -1,25 +0,0 @@
-{
- "short_name": "Record",
- "name": "Record",
- "icons": [
- {
- "src": "favicon.ico",
- "sizes": "64x64 32x32 24x24 16x16",
- "type": "image/x-icon"
- },
- {
- "src": "logo192.png",
- "type": "image/png",
- "sizes": "192x192"
- },
- {
- "src": "logo512.png",
- "type": "image/png",
- "sizes": "512x512"
- }
- ],
- "start_url": ".",
- "display": "standalone",
- "theme_color": "#000000",
- "background_color": "#ffffff"
-}
\ No newline at end of file
diff --git a/admin-ui/public/robots.txt b/admin-ui/public/robots.txt
deleted file mode 100644
index e9e57dc..0000000
--- a/admin-ui/public/robots.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-# https://www.robotstxt.org/robotstxt.html
-User-agent: *
-Disallow:
diff --git a/admin-ui/src/App.scss b/admin-ui/src/App.scss
deleted file mode 100644
index 4c1cbb0..0000000
--- a/admin-ui/src/App.scss
+++ /dev/null
@@ -1,59 +0,0 @@
-// .App {
-// .MuiAppBar-colorSecondary {
-// background-color: black;
-
-// .RaAppBar-menuButton-13 {
-// background-color: yellow;
-// }
-// }
-
-// .MuiDrawer-paper {
-// background-color: red;
-
-// .MuiListItemIcon-root {
-// color: white;
-// }
-// }
-
-// .MuiButton-textPrimary {
-// background-color: purple;
-// margin: 0 0.5rem;
-// color: white;
-// padding: 0.5rem 1rem;
-
-// &:hover {
-// background-color: blue;
-// }
-// }
-
-// .MuiTableRow-head {
-// .MuiTableCell-head {
-// background-color: black;
-// color: white;
-// }
-
-// .MuiTableSortLabel-root {
-// &:hover {
-// color: red;
-
-// .MuiTableSortLabel-icon {
-// color: red !important;
-// }
-// }
-// .MuiTableSortLabel-icon {
-// color: white !important;
-// }
-// }
-// .MuiTableSortLabel-active {
-// color: green;
-
-// .MuiTableSortLabel-icon {
-// color: green !important;
-// }
-// }
-// }
-
-// .MuiFormLabel-root {
-// color: magenta;
-// }
-// }
diff --git a/admin-ui/src/App.tsx b/admin-ui/src/App.tsx
deleted file mode 100644
index 9267aa2..0000000
--- a/admin-ui/src/App.tsx
+++ /dev/null
@@ -1,50 +0,0 @@
-import React, { useEffect, useState } from "react";
-import { Admin, DataProvider, Resource } from "react-admin";
-import buildGraphQLProvider from "./data-provider/graphqlDataProvider";
-import { theme } from "./theme/theme";
-import Login from "./Login";
-import "./App.scss";
-import Dashboard from "./pages/Dashboard";
-import { UserList } from "./user/UserList";
-import { UserCreate } from "./user/UserCreate";
-import { UserEdit } from "./user/UserEdit";
-import { UserShow } from "./user/UserShow";
-import { jwtAuthProvider } from "./auth-provider/ra-auth-jwt";
-
-const App = (): React.ReactElement => {
- const [dataProvider, setDataProvider] = useState(null);
- useEffect(() => {
- buildGraphQLProvider
- .then((provider: any) => {
- setDataProvider(() => provider);
- })
- .catch((error: any) => {
- console.log(error);
- });
- }, []);
- if (!dataProvider) {
- return