diff --git a/app/.env b/app/.env
index 11ab3ee..5620805 100644
--- a/app/.env
+++ b/app/.env
@@ -1,4 +1,3 @@
-///
-VITE_APP_NAME="Fruity Vice App"
-VITE_APP_AUTHOR="Ben Borla"
-VITE_API_ENDPPOINT="http://public.test/"
+
+VITE_BUILD_ADDRESS=
+VITE_API_ENDPOINT=http://public.test
diff --git a/app/.eslintrc.cjs b/app/.eslintrc.cjs
deleted file mode 100644
index 6f40582..0000000
--- a/app/.eslintrc.cjs
+++ /dev/null
@@ -1,15 +0,0 @@
-/* eslint-env node */
-require('@rushstack/eslint-patch/modern-module-resolution')
-
-module.exports = {
- root: true,
- 'extends': [
- 'plugin:vue/vue3-essential',
- 'eslint:recommended',
- '@vue/eslint-config-typescript',
- '@vue/eslint-config-prettier/skip-formatting'
- ],
- parserOptions: {
- ecmaVersion: 'latest'
- }
-}
diff --git a/app/.gitignore b/app/.gitignore
index 38adffa..9c79abf 100644
--- a/app/.gitignore
+++ b/app/.gitignore
@@ -13,6 +13,9 @@ dist
dist-ssr
coverage
*.local
+.env*
+*.env*
+*.env.*
/cypress/videos/
/cypress/screenshots/
@@ -26,3 +29,8 @@ coverage
*.njsproj
*.sln
*.sw?
+
+# Personal
+.history
+.vscode
+.gitpod*
diff --git a/app/.prettierrc.json b/app/.prettierrc.json
deleted file mode 100644
index 66e2335..0000000
--- a/app/.prettierrc.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "$schema": "https://json.schemastore.org/prettierrc",
- "semi": false,
- "tabWidth": 2,
- "singleQuote": true,
- "printWidth": 100,
- "trailingComma": "none"
-}
\ No newline at end of file
diff --git a/app/.vscode/extensions.json b/app/.vscode/extensions.json
deleted file mode 100644
index 009a534..0000000
--- a/app/.vscode/extensions.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "recommendations": [
- "Vue.volar",
- "Vue.vscode-typescript-vue-plugin",
- "dbaeumer.vscode-eslint",
- "esbenp.prettier-vscode"
- ]
-}
diff --git a/app/LICENSE b/app/LICENSE
new file mode 100644
index 0000000..93d3ef2
--- /dev/null
+++ b/app/LICENSE
@@ -0,0 +1,13 @@
+Creative Commons Attribution 4.0
+
+Copyright (c) 2023 How Bizarre
+
+You are free to:
+Share — copy and redistribute the material in any medium or format
+Adapt — remix, transform, and build upon the material for any purpose, even commercially.
+
+The licensor cannot revoke these freedoms as long as you follow the license terms.
+
+Under the following terms:
+Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
+No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
diff --git a/app/README.md b/app/README.md
deleted file mode 100644
index 3a6f2c9..0000000
--- a/app/README.md
+++ /dev/null
@@ -1,52 +0,0 @@
-# app
-
-This template should help get you started developing with Vue 3 in Vite.
-
-## Recommended IDE Setup
-
-[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
-
-## Type Support for `.vue` Imports in TS
-
-TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
-
-If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
-
-1. Disable the built-in TypeScript Extension
- 1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette
- 2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
-2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
-
-## Customize configuration
-
-See [Vite Configuration Reference](https://vitejs.dev/config/).
-
-## Project Setup
-
-```sh
-npm install
-```
-
-### Compile and Hot-Reload for Development
-
-```sh
-npm run dev
-```
-
-### Type-Check, Compile and Minify for Production
-
-```sh
-npm run build
-```
-
-### Run Unit Tests with [Vitest](https://vitest.dev/)
-
-```sh
-npm run test:unit
-```
-
-### Lint with [ESLint](https://eslint.org/)
-
-```sh
-npm run lint
-```
diff --git a/app/env.d.ts b/app/env.d.ts
index 0b3bb5e..11f02fe 100644
--- a/app/env.d.ts
+++ b/app/env.d.ts
@@ -1,10 +1 @@
///
-VITE_APP_NAME="Fruity Vice App"
-VITE_APP_AUTHOR="Ben Borla"
-
-/* eslint-disable */
-declare module '*.vue' {
- import type { DefineComponent } from 'vue'
- const component: DefineComponent<{}, {}, any>
- export default component
-}
diff --git a/app/index.html b/app/index.html
index 298a700..214f2ff 100644
--- a/app/index.html
+++ b/app/index.html
@@ -1,13 +1,22 @@
-
-
-
-
-
-
diff --git a/app/src/components/TheWelcome.vue b/app/src/components/TheWelcome.vue
deleted file mode 100644
index 49d8f73..0000000
--- a/app/src/components/TheWelcome.vue
+++ /dev/null
@@ -1,88 +0,0 @@
-
-
-
-
-
-
-
- Documentation
-
- Vue’s
- official documentation
- provides you with all information you need to get started.
-
-
-
-
-
-
- Tooling
-
- This project is served and bundled with
- Vite. The
- recommended IDE setup is
- VSCode +
- Volar. If
- you need to test your components and web pages, check out
- Cypress and
- Cypress Component Testing.
-
-
-
- More instructions are available in README.md.
-
-
-
-
-
-
- Ecosystem
-
- Get official tools and libraries for your project:
- Pinia,
- Vue Router,
- Vue Test Utils, and
- Vue Dev Tools. If
- you need more resources, we suggest paying
- Awesome Vue
- a visit.
-
-
-
-
-
-
- Community
-
- Got stuck? Ask your question on
- Vue Land, our official
- Discord server, or
- StackOverflow. You should also subscribe to
- our mailing list and follow
- the official
- @vuejs
- twitter account for latest news in the Vue world.
-
-
-
-
-
-
- Support Vue
-
- As an independent project, Vue relies on community backing for its sustainability. You can help
- us by
- becoming a sponsor.
-
-
diff --git a/app/src/components/WelcomeItem.vue b/app/src/components/WelcomeItem.vue
deleted file mode 100644
index 6d7086a..0000000
--- a/app/src/components/WelcomeItem.vue
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
+ Organic compounds, including sugars and starches, providing energy
+
+ {{ fruit.carbohydrates }}
+
+
+
+
Protein
+ An essential macromolecules composed of amino acids, serving diverse biological
+ functions, such as structure, enzymes, and signaling in living organisms.
+
+ {{ fruit.protein }}
+
+
+
+
Fat
+ Lipids storing energy, aiding in insulation and cushioning, composed of fatty
+ acids
+
+ {{ fruit.fat }}
+
+
+
+
Sugar
+ Simple carbohydrates, providing quick energy, and include glucose and
+ fructose.
+
+ {{ fruit.sugar }}
+
+
+
+
Calories
+ Units of energy derived from food, utilized by the body for various functions, including metabolism,
+ movement, and maintaining physiological processes.
+