├── .env ├── .eslintrc.json ├── .gitignore ├── README.md ├── components ├── About.jsx ├── Campaigns.jsx ├── Carousel.jsx ├── Reservation.jsx ├── admin │ ├── AddProduct.jsx │ ├── Category.jsx │ ├── Footer.jsx │ ├── Order.jsx │ └── Products.jsx ├── customers │ ├── CustomerItem.jsx │ └── Customers.jsx ├── form │ └── Input.jsx ├── layout │ ├── Footer.jsx │ └── Header.jsx ├── product │ ├── MenuItem.jsx │ └── MenuWrapper.jsx ├── profile │ ├── Account.jsx │ ├── Order.jsx │ └── Password.jsx └── ui │ ├── Logo.jsx │ ├── Search.jsx │ └── Title.jsx ├── jsconfig.json ├── layout └── Layout.js ├── models ├── Category.js ├── Footer.js ├── Order.js ├── Product.js └── User.js ├── next.config.js ├── package.json ├── pages ├── _app.jsx ├── _document.jsx ├── about │ └── index.js ├── admin │ ├── index.jsx │ └── profile.jsx ├── api │ ├── admin │ │ └── index.js │ ├── auth │ │ └── [...nextauth].js │ ├── categories │ │ ├── [id].js │ │ └── index.js │ ├── footer │ │ ├── [id].js │ │ └── index.js │ ├── orders │ │ ├── [id].js │ │ └── index.js │ ├── products │ │ ├── [id].js │ │ └── index.js │ └── users │ │ ├── [id].js │ │ ├── index.js │ │ └── register.js ├── auth │ ├── login.jsx │ └── register.jsx ├── cart │ └── index.jsx ├── home │ └── index.jsx ├── index.jsx ├── menu │ └── index.jsx ├── order │ └── [id].jsx ├── product │ └── [id].jsx ├── profile │ └── [id].jsx └── reservation │ └── index.jsx ├── postcss.config.js ├── public ├── favicon.ico ├── images │ ├── about-img.png │ ├── admin.png │ ├── bake.png │ ├── bike.png │ ├── client1.jpg │ ├── client2.jpg │ ├── delivered.png │ ├── f1.png │ ├── hero-bg.jpg │ ├── o1.jpg │ ├── paid.png │ └── size.png ├── next.svg └── vercel.svg ├── redux ├── cartSlice.js └── store.js ├── schema ├── admin.js ├── adminFooter.js ├── footer.js ├── login.js ├── newPassword.js ├── product.js ├── profile.js ├── register.js ├── reservation.js └── reservationSchema.js ├── styles └── globals.css ├── tailwind.config.js ├── util ├── dbConnect.js └── mongo.js └── yarn.lock /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/.env -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/README.md -------------------------------------------------------------------------------- /components/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/About.jsx -------------------------------------------------------------------------------- /components/Campaigns.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/Campaigns.jsx -------------------------------------------------------------------------------- /components/Carousel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/Carousel.jsx -------------------------------------------------------------------------------- /components/Reservation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/Reservation.jsx -------------------------------------------------------------------------------- /components/admin/AddProduct.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/admin/AddProduct.jsx -------------------------------------------------------------------------------- /components/admin/Category.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/admin/Category.jsx -------------------------------------------------------------------------------- /components/admin/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/admin/Footer.jsx -------------------------------------------------------------------------------- /components/admin/Order.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/admin/Order.jsx -------------------------------------------------------------------------------- /components/admin/Products.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/admin/Products.jsx -------------------------------------------------------------------------------- /components/customers/CustomerItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/customers/CustomerItem.jsx -------------------------------------------------------------------------------- /components/customers/Customers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/customers/Customers.jsx -------------------------------------------------------------------------------- /components/form/Input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/form/Input.jsx -------------------------------------------------------------------------------- /components/layout/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/layout/Footer.jsx -------------------------------------------------------------------------------- /components/layout/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/layout/Header.jsx -------------------------------------------------------------------------------- /components/product/MenuItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/product/MenuItem.jsx -------------------------------------------------------------------------------- /components/product/MenuWrapper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/product/MenuWrapper.jsx -------------------------------------------------------------------------------- /components/profile/Account.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/profile/Account.jsx -------------------------------------------------------------------------------- /components/profile/Order.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/profile/Order.jsx -------------------------------------------------------------------------------- /components/profile/Password.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/profile/Password.jsx -------------------------------------------------------------------------------- /components/ui/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/ui/Logo.jsx -------------------------------------------------------------------------------- /components/ui/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/ui/Search.jsx -------------------------------------------------------------------------------- /components/ui/Title.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/components/ui/Title.jsx -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/jsconfig.json -------------------------------------------------------------------------------- /layout/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/layout/Layout.js -------------------------------------------------------------------------------- /models/Category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/models/Category.js -------------------------------------------------------------------------------- /models/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/models/Footer.js -------------------------------------------------------------------------------- /models/Order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/models/Order.js -------------------------------------------------------------------------------- /models/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/models/Product.js -------------------------------------------------------------------------------- /models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/models/User.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/_app.jsx -------------------------------------------------------------------------------- /pages/_document.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/_document.jsx -------------------------------------------------------------------------------- /pages/about/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/about/index.js -------------------------------------------------------------------------------- /pages/admin/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/admin/index.jsx -------------------------------------------------------------------------------- /pages/admin/profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/admin/profile.jsx -------------------------------------------------------------------------------- /pages/api/admin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/api/admin/index.js -------------------------------------------------------------------------------- /pages/api/auth/[...nextauth].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/api/auth/[...nextauth].js -------------------------------------------------------------------------------- /pages/api/categories/[id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/api/categories/[id].js -------------------------------------------------------------------------------- /pages/api/categories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/api/categories/index.js -------------------------------------------------------------------------------- /pages/api/footer/[id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/api/footer/[id].js -------------------------------------------------------------------------------- /pages/api/footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/api/footer/index.js -------------------------------------------------------------------------------- /pages/api/orders/[id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/api/orders/[id].js -------------------------------------------------------------------------------- /pages/api/orders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/api/orders/index.js -------------------------------------------------------------------------------- /pages/api/products/[id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/api/products/[id].js -------------------------------------------------------------------------------- /pages/api/products/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/api/products/index.js -------------------------------------------------------------------------------- /pages/api/users/[id].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/api/users/[id].js -------------------------------------------------------------------------------- /pages/api/users/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/api/users/index.js -------------------------------------------------------------------------------- /pages/api/users/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/api/users/register.js -------------------------------------------------------------------------------- /pages/auth/login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/auth/login.jsx -------------------------------------------------------------------------------- /pages/auth/register.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/auth/register.jsx -------------------------------------------------------------------------------- /pages/cart/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/cart/index.jsx -------------------------------------------------------------------------------- /pages/home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/home/index.jsx -------------------------------------------------------------------------------- /pages/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/index.jsx -------------------------------------------------------------------------------- /pages/menu/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/menu/index.jsx -------------------------------------------------------------------------------- /pages/order/[id].jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/order/[id].jsx -------------------------------------------------------------------------------- /pages/product/[id].jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/product/[id].jsx -------------------------------------------------------------------------------- /pages/profile/[id].jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/profile/[id].jsx -------------------------------------------------------------------------------- /pages/reservation/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/pages/reservation/index.jsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/about-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/public/images/about-img.png -------------------------------------------------------------------------------- /public/images/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/public/images/admin.png -------------------------------------------------------------------------------- /public/images/bake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/public/images/bake.png -------------------------------------------------------------------------------- /public/images/bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/public/images/bike.png -------------------------------------------------------------------------------- /public/images/client1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/public/images/client1.jpg -------------------------------------------------------------------------------- /public/images/client2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/public/images/client2.jpg -------------------------------------------------------------------------------- /public/images/delivered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/public/images/delivered.png -------------------------------------------------------------------------------- /public/images/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/public/images/f1.png -------------------------------------------------------------------------------- /public/images/hero-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/public/images/hero-bg.jpg -------------------------------------------------------------------------------- /public/images/o1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/public/images/o1.jpg -------------------------------------------------------------------------------- /public/images/paid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/public/images/paid.png -------------------------------------------------------------------------------- /public/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/public/images/size.png -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /redux/cartSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/redux/cartSlice.js -------------------------------------------------------------------------------- /redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/redux/store.js -------------------------------------------------------------------------------- /schema/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/schema/admin.js -------------------------------------------------------------------------------- /schema/adminFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/schema/adminFooter.js -------------------------------------------------------------------------------- /schema/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/schema/footer.js -------------------------------------------------------------------------------- /schema/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/schema/login.js -------------------------------------------------------------------------------- /schema/newPassword.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/schema/newPassword.js -------------------------------------------------------------------------------- /schema/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/schema/product.js -------------------------------------------------------------------------------- /schema/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/schema/profile.js -------------------------------------------------------------------------------- /schema/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/schema/register.js -------------------------------------------------------------------------------- /schema/reservation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/schema/reservation.js -------------------------------------------------------------------------------- /schema/reservationSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/schema/reservationSchema.js -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /util/dbConnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/util/dbConnect.js -------------------------------------------------------------------------------- /util/mongo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/util/mongo.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eminkmru/Full-Stack-food-ordering-Project-with-NextJS/HEAD/yarn.lock --------------------------------------------------------------------------------