diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4a7f73a --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Nuxt dev/build outputs +.output +.data +.nuxt +.nitro +.cache +dist + +# Node dependencies +node_modules + +# Logs +logs +*.log + +# Misc +.DS_Store +.fleet +.idea + +# Local env files +.env +.env.* +!.env.example diff --git a/README.md b/README.md new file mode 100644 index 0000000..25b5821 --- /dev/null +++ b/README.md @@ -0,0 +1,75 @@ +# Nuxt Minimal Starter + +Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more. + +## Setup + +Make sure to install dependencies: + +```bash +# npm +npm install + +# pnpm +pnpm install + +# yarn +yarn install + +# bun +bun install +``` + +## Development Server + +Start the development server on `http://localhost:3000`: + +```bash +# npm +npm run dev + +# pnpm +pnpm dev + +# yarn +yarn dev + +# bun +bun run dev +``` + +## Production + +Build the application for production: + +```bash +# npm +npm run build + +# pnpm +pnpm build + +# yarn +yarn build + +# bun +bun run build +``` + +Locally preview production build: + +```bash +# npm +npm run preview + +# pnpm +pnpm preview + +# yarn +yarn preview + +# bun +bun run preview +``` + +Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information. diff --git a/app/app.vue b/app/app.vue new file mode 100644 index 0000000..0a87abd --- /dev/null +++ b/app/app.vue @@ -0,0 +1,9 @@ + + \ No newline at end of file diff --git a/app/components/AppFooter.vue b/app/components/AppFooter.vue new file mode 100644 index 0000000..c763c96 --- /dev/null +++ b/app/components/AppFooter.vue @@ -0,0 +1,24 @@ + + + diff --git a/app/components/AppHeader.vue b/app/components/AppHeader.vue index 1513768..2dc991b 100644 --- a/app/components/AppHeader.vue +++ b/app/components/AppHeader.vue @@ -1,56 +1,69 @@ - diff --git a/app/components/ColorModeButton.vue b/app/components/ColorModeButton.vue new file mode 100644 index 0000000..b6fa19a --- /dev/null +++ b/app/components/ColorModeButton.vue @@ -0,0 +1,76 @@ + + + + + diff --git a/app/components/PolaroidItem.vue b/app/components/PolaroidItem.vue new file mode 100644 index 0000000..0cdb2de --- /dev/null +++ b/app/components/PolaroidItem.vue @@ -0,0 +1,28 @@ + + + diff --git a/app/components/landing/About.vue b/app/components/landing/About.vue new file mode 100644 index 0000000..c2c2a66 --- /dev/null +++ b/app/components/landing/About.vue @@ -0,0 +1,23 @@ + + + + + diff --git a/app/components/landing/Blog.vue b/app/components/landing/Blog.vue new file mode 100644 index 0000000..52a7135 --- /dev/null +++ b/app/components/landing/Blog.vue @@ -0,0 +1,61 @@ + + + diff --git a/app/components/landing/FAQ.vue b/app/components/landing/FAQ.vue new file mode 100644 index 0000000..7cb7648 --- /dev/null +++ b/app/components/landing/FAQ.vue @@ -0,0 +1,64 @@ + + + diff --git a/app/components/landing/Hero.vue b/app/components/landing/Hero.vue new file mode 100644 index 0000000..a0993a6 --- /dev/null +++ b/app/components/landing/Hero.vue @@ -0,0 +1,32 @@ + + + diff --git a/app/components/landing/Testimonials.vue b/app/components/landing/Testimonials.vue new file mode 100644 index 0000000..987fd83 --- /dev/null +++ b/app/components/landing/Testimonials.vue @@ -0,0 +1,42 @@ + + + diff --git a/app/components/landing/WorkExperience.vue b/app/components/landing/WorkExperience.vue new file mode 100644 index 0000000..551cc09 --- /dev/null +++ b/app/components/landing/WorkExperience.vue @@ -0,0 +1,57 @@ + + + + + diff --git a/app/pages/index/index.vue b/app/pages/index/index.vue index de0bc20..accd7b7 100644 --- a/app/pages/index/index.vue +++ b/app/pages/index/index.vue @@ -3,631 +3,9 @@