├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── Meals.js ├── README.md ├── app ├── LoadingWrapper.jsx ├── about │ └── page.jsx ├── api │ └── submit │ │ └── route.js ├── icon.jpeg ├── layout.jsx ├── loading.jsx ├── page.jsx └── plans │ └── page.jsx ├── assets ├── fonts │ ├── 29lt-zawi-regular.otf │ ├── Batangas Bold 700.otf │ ├── NeueMachina-Regular.otf │ └── NeueMachina-Ultrabold.otf ├── images │ ├── Close.jsx │ ├── about.avif │ ├── calendar.png │ ├── checkmark.gif │ ├── close_icon.webp │ ├── delivery.jpg │ ├── footer-logo.jpeg │ ├── fresh.jpg │ ├── hero-bg2.avif │ ├── hero-bg2.jpg │ ├── kitchen.jpg │ ├── logo.png │ ├── meals.jpg │ ├── menu-bg.webp │ ├── menu.webp │ ├── menu_icon.jpg │ ├── menu_icon.webp │ ├── morning.avif │ ├── morning.jpg │ ├── navneet.png │ ├── night.avif │ ├── noon.jpg │ ├── noon.webp │ ├── plans-bg.jpg │ ├── plate.jpg │ ├── rotify.avif │ ├── schedule-card.avif │ ├── suraj.png │ ├── veggies.avif │ ├── wa.png │ └── whatsapp-card.avif ├── schema │ └── formSchema.ts └── styles │ └── globals.css ├── components ├── Features.jsx ├── Footer.jsx ├── Hero.jsx ├── InfoBoxes.jsx ├── Map.jsx ├── MealCard.jsx ├── Navbar.jsx ├── Review.jsx ├── ReviewsSection.jsx ├── ScheduleModal.jsx └── SearchForm.jsx ├── jsconfig.json ├── next.config.mjs ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── next.svg └── vercel.svg └── tailwind.config.js
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun devThis project uses next/font to automatically optimize and load Inter, a custom Google Font.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!