- Its made in Nuxt.js
- Initially i started off with Nuxt 4, but due to lack of resources i switched to Nuxt 3
- In the start, i thought to build a social media app but due to time constraints i switched to the landing page
- I designed and made the whole landing page on my own
- I have implemented all basic things like props and components stuff
Look at the Nuxt documentation to learn more.
Make sure to install dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun installlStart the development server on http://localhost:3000:
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run devvBuild the application for production:
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run builddLocally preview production build:
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run previewwCheck out the deployment documentation for more information.