diff --git a/client/.babelrc b/client/.babelrc deleted file mode 100644 index d3014957..00000000 --- a/client/.babelrc +++ /dev/null @@ -1,4 +0,0 @@ -{ - "presets": ["@babel/preset-env", "@babel/preset-react"], - "plugins": ["@babel/plugin-transform-runtime"] -} diff --git a/client/.eslintrc.js b/client/.eslintrc.js deleted file mode 100644 index e574eaab..00000000 --- a/client/.eslintrc.js +++ /dev/null @@ -1,39 +0,0 @@ -/** - * This is our eslint configuration file for the server. - * Note: If you make a change here, think about if it should be applied in the server config file as well. - * - * ESlint is a way to enforce certain code rules to keep the code base consistent. - * Have a look at our project repo README or https://eslint.org/ for more information - */ - -export default { - env: { - node: true, - browser: true, - es2021: true, - jest: true, - }, - extends: ["eslint:recommended", "plugin:react/recommended"], - parserOptions: { - ecmaFeatures: { - jsx: true, - }, - ecmaVersion: 12, - sourceType: "module", - }, - overrides: [ - { - files: ["*.jsx", "*.js"], - }, - ], - plugins: ["react"], - rules: { - quotes: ["error", "double"], - "no-console": "error", - }, - settings: { - react: { - version: "detect", - }, - }, -}; diff --git a/client/index.html b/client/index.html index 113dc4b7..a4c1b4f7 100644 --- a/client/index.html +++ b/client/index.html @@ -2,7 +2,10 @@ - + + + + diff --git a/client/public/apple-touch-icon.png b/client/public/apple-touch-icon.png new file mode 100644 index 00000000..af300dab Binary files /dev/null and b/client/public/apple-touch-icon.png differ diff --git a/client/public/favicon.ico b/client/public/favicon.ico new file mode 100644 index 00000000..26fed7e7 Binary files /dev/null and b/client/public/favicon.ico differ diff --git a/client/public/favicon.png b/client/public/favicon.png index 602913fa..26fed7e7 100644 Binary files a/client/public/favicon.png and b/client/public/favicon.png differ diff --git a/client/public/favicon.svg b/client/public/favicon.svg new file mode 100644 index 00000000..8c22e8e2 --- /dev/null +++ b/client/public/favicon.svg @@ -0,0 +1,3252 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/client/src/assets/hyf-logo.png b/client/src/assets/hyf-logo.png deleted file mode 100644 index 4c1c1f38..00000000 Binary files a/client/src/assets/hyf-logo.png and /dev/null differ diff --git a/client/src/assets/images/person.jpg b/client/src/assets/images/person.jpg deleted file mode 100644 index a8c1d746..00000000 Binary files a/client/src/assets/images/person.jpg and /dev/null differ diff --git a/client/vite.config.ts b/client/vite.config.ts index 1935a99a..1ba22673 100644 --- a/client/vite.config.ts +++ b/client/vite.config.ts @@ -12,7 +12,7 @@ export default defineConfig(({ command, mode }) => { // Specify server port. Note if the port is already being used, // Vite will automatically try the next available port so this may not be the actual port // the server ends up listening on. - port: 5173, + port: 5174, // Automatically open the app in the browser on server start. open: "/",