{"id":28520258,"url":"https://github.com/codedpro/mediterranean-delight-next","last_synced_at":"2025-10-09T05:33:36.964Z","repository":{"id":294215919,"uuid":"984808900","full_name":"codedpro/mediterranean-delight-next","owner":"codedpro","description":"Mediterranean Delight – A modern restaurant website built with Next.js 15, Tailwind CSS, and Prisma. Features include an interactive menu, reservation system, and Stripe integration for online ordering.","archived":false,"fork":false,"pushed_at":"2025-05-19T11:19:51.000Z","size":48814,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-02T14:44:24.177Z","etag":null,"topics":["next-auth","nextjs","online-ordering","prisma","react-hook-form","reservation-system","restaurant-website","stripe","tailwindcss","typescript","zod"],"latest_commit_sha":null,"homepage":"https://mediterranean-delight-next.vercel.app/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codedpro.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-16T14:41:16.000Z","updated_at":"2025-05-19T11:26:17.000Z","dependencies_parsed_at":"2025-05-19T12:47:17.175Z","dependency_job_id":null,"html_url":"https://github.com/codedpro/mediterranean-delight-next","commit_stats":null,"previous_names":["codedpro/mediterranean-delight-next"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codedpro/mediterranean-delight-next","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codedpro%2Fmediterranean-delight-next","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codedpro%2Fmediterranean-delight-next/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codedpro%2Fmediterranean-delight-next/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codedpro%2Fmediterranean-delight-next/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codedpro","download_url":"https://codeload.github.com/codedpro/mediterranean-delight-next/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codedpro%2Fmediterranean-delight-next/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000741,"owners_count":26082932,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["next-auth","nextjs","online-ordering","prisma","react-hook-form","reservation-system","restaurant-website","stripe","tailwindcss","typescript","zod"],"created_at":"2025-06-09T07:01:17.942Z","updated_at":"2025-10-09T05:33:36.955Z","avatar_url":"https://github.com/codedpro.png","language":"TypeScript","readme":"# Mediterranean Delight 🍽️\n\n**Mediterranean Delight** is a full-featured restaurant website showcasing authentic Mediterranean cuisine. Built with Next.js 15, it offers an interactive menu, reservation system, and online ordering capabilities, providing a seamless experience for customers.\n\n🌐 Live Preview: [mediterranean-delight-next.vercel.app](https://mediterranean-delight-next.vercel.app/)\n\n---\n\n## 🚀 Features\n\n- **Interactive Menu**: Browse signature dishes with detailed descriptions and pricing.\n- **Reservation System**: Book tables directly through the website.\n- **Online Ordering**: Secure checkout powered by Stripe.\n- **Authentication**: User login and registration with NextAuth.\n- **Responsive Design**: Optimized for all devices.\n- **SEO Friendly**: Enhanced visibility on search engines.\n\n---\n\n## 🛠️ Tech Stack\n\n- **Framework**: Next.js 15.3.1\n- **Language**: TypeScript\n- **Styling**: Tailwind CSS 4\n- **Database ORM**: Prisma 6.6.0\n- **Authentication**: NextAuth\n- **Payment Processing**: Stripe\n- **Form Handling**: React Hook Form, Zod, @hookform/resolvers\n- **Email Services**: Nodemailer\n- **Date Utilities**: date-fns\n\n---\n\n## 📦 Installation\n\n1. **Clone the repository**:\n\n   ```bash\n   git clone https://github.com/codedpro/mediterranean-delight-next.git\n   cd mediterranean-delight-next\n   ```\n\n2. **Install dependencies**:\n\n   ```bash\n   npm install\n   # or\n   yarn install\n   ```\n\n3. **Set up environment variables**:\n\n   Create a `.env.local` file and add the necessary environment variables as specified in `.env.example`.\n\n4. **Generate Prisma client**:\n\n   ```bash\n   npx prisma generate\n   ```\n\n5. **Run the development server**:\n\n   ```bash\n   npm run dev\n   # or\n   yarn dev\n   ```\n\n   Open [http://localhost:3000](http://localhost:3000) in your browser.\n\n---\n\n## 📁 Project Structure\n\n```bash\n├── components/        # Reusable UI components\n├── pages/             # Next.js pages\n├── prisma/            # Prisma schema and migrations\n├── public/            # Static assets\n├── styles/            # Global styles and Tailwind configurations\n├── utils/             # Utility functions\n├── types/             # TypeScript type definitions\n├── .env.example       # Example environment variables\n├── tailwind.config.js # Tailwind CSS configuration\n└── package.json       # Project metadata and scripts\n```\n\n---\n\n## 🧪 Scripts\n\n- `npm run dev` – Start the development server\n- `npm run build` – Build for production\n- `npm run start` – Start the production server\n- `npm run lint` – Run ESLint to analyze code quality\n\n---\n\n## 🙌 Acknowledgments\n\n- [Next.js](https://nextjs.org/) – The React Framework\n- [Tailwind CSS](https://tailwindcss.com/) – Utility-first CSS framework\n- [Prisma](https://www.prisma.io/) – Next-generation ORM\n- [Stripe](https://stripe.com/) – Payment processing platform\n- [NextAuth](https://next-auth.js.org/) – Authentication for Next.js\n- [React Hook Form](https://react-hook-form.com/) – Form state management\n- [Zod](https://zod.dev/) – TypeScript-first schema validation\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodedpro%2Fmediterranean-delight-next","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodedpro%2Fmediterranean-delight-next","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodedpro%2Fmediterranean-delight-next/lists"}