├── .editorconfig ├── .env.sample ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── docs ├── screenshot1.png └── screenshot2.png ├── next-env.d.ts ├── next-i18next.config.js ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── bagel.jpg ├── banner.png ├── blended-coffee.jpg ├── browserconfig.xml ├── cold-coffee.jpg ├── dashboard │ └── images │ │ ├── brand │ │ ├── brand-01.svg │ │ ├── brand-02.svg │ │ ├── brand-03.svg │ │ ├── brand-04.svg │ │ └── brand-05.svg │ │ ├── cards │ │ ├── cards-01.png │ │ ├── cards-02.png │ │ ├── cards-03.png │ │ ├── cards-04.png │ │ ├── cards-05.png │ │ └── cards-06.png │ │ ├── country │ │ ├── country-01.svg │ │ ├── country-02.svg │ │ ├── country-03.svg │ │ ├── country-04.svg │ │ ├── country-05.svg │ │ └── country-06.svg │ │ ├── cover │ │ └── cover-01.png │ │ ├── favicon.ico │ │ ├── icon │ │ ├── icon-arrow-down.svg │ │ ├── icon-calendar.svg │ │ ├── icon-copy-alt.svg │ │ ├── icon-moon.svg │ │ └── icon-sun.svg │ │ ├── logo │ │ ├── logo-dark.svg │ │ ├── logo-icon.svg │ │ └── logo.svg │ │ ├── product │ │ ├── product-01.png │ │ ├── product-02.png │ │ ├── product-03.png │ │ ├── product-04.png │ │ └── product-thumb.png │ │ ├── task │ │ └── task-01.jpg │ │ └── user │ │ ├── user-01.png │ │ ├── user-02.png │ │ ├── user-03.png │ │ ├── user-04.png │ │ ├── user-05.png │ │ ├── user-06.png │ │ ├── user-07.png │ │ ├── user-08.png │ │ ├── user-09.png │ │ ├── user-10.png │ │ ├── user-11.png │ │ ├── user-12.png │ │ └── user-13.png ├── default.png ├── favicon.ico ├── github-18px.svg ├── google-18px.svg ├── hot-coffee.jpeg ├── images │ └── icons │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── apple-icon-precomposed.png │ │ ├── apple-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ └── ms-icon-70x70.png ├── manifest.json ├── milktea.jpeg └── sandwich.jpeg ├── src ├── app │ ├── [lng] │ │ ├── cart │ │ │ └── page.js │ │ ├── dashboard │ │ │ ├── customer-feedbacks │ │ │ │ └── page.js │ │ │ ├── customers-360 │ │ │ │ └── page.js │ │ │ ├── layout.js │ │ │ ├── page.js │ │ │ ├── products │ │ │ │ ├── new-product │ │ │ │ │ └── page.js │ │ │ │ ├── page.js │ │ │ │ └── product-details │ │ │ │ │ └── [productId] │ │ │ │ │ └── page.js │ │ │ ├── settings │ │ │ │ └── page.js │ │ │ └── stores │ │ │ │ ├── new-store │ │ │ │ └── page.js │ │ │ │ ├── page.js │ │ │ │ └── store-details │ │ │ │ └── [storeId] │ │ │ │ ├── add-staff │ │ │ │ └── page.js │ │ │ │ └── page.js │ │ ├── layout.js │ │ ├── login │ │ │ └── page.js │ │ ├── order-details │ │ │ └── [orderId] │ │ │ │ ├── page.js │ │ │ │ └── rating │ │ │ │ └── page.js │ │ ├── orders │ │ │ └── page.js │ │ ├── page.js │ │ ├── pick-item-options │ │ │ └── [itemId] │ │ │ │ └── page.js │ │ ├── staffs │ │ │ ├── order-details │ │ │ │ └── [orderId] │ │ │ │ │ └── page.js │ │ │ └── orders │ │ │ │ ├── inactive │ │ │ │ └── page.js │ │ │ │ ├── layout.js │ │ │ │ ├── new │ │ │ │ └── page.js │ │ │ │ ├── page.js │ │ │ │ └── processing │ │ │ │ └── page.js │ │ └── user │ │ │ └── page.js │ ├── globals.css │ ├── i18n │ │ ├── client.js │ │ ├── index.js │ │ ├── locales │ │ │ ├── cn │ │ │ │ └── common.json │ │ │ ├── en │ │ │ │ └── common.json │ │ │ └── vi │ │ │ │ └── common.json │ │ └── settings.js │ ├── layout.js │ └── page.js ├── components │ ├── AddressPicker.js │ ├── ApexChart.js │ ├── Comment.js │ ├── Header.js │ ├── ImageUploader.js │ ├── LangSelector.js │ ├── LoadingSvg.js │ ├── MainMenu.js │ ├── Rating.js │ ├── RatingInput.js │ ├── RatingWithNumbers.js │ ├── buttons │ │ ├── BackButton.js │ │ └── XButton.js │ ├── cart │ │ ├── CartItemCard.js │ │ └── Payment.js │ ├── dashboard │ │ ├── Breadcrumb.tsx │ │ ├── CardFour.tsx │ │ ├── CardOne.js │ │ ├── CardThree.tsx │ │ ├── CardTwo.js │ │ ├── ChartFive.tsx │ │ ├── ChartFour.tsx │ │ ├── ChartOne.tsx │ │ ├── ChartThree.tsx │ │ ├── ChartTwo.tsx │ │ ├── CheckboxFive.tsx │ │ ├── CheckboxFour.tsx │ │ ├── CheckboxOne.tsx │ │ ├── CheckboxThree.tsx │ │ ├── CheckboxTwo.tsx │ │ ├── DarkModeSwitcher.tsx │ │ ├── DataStats.tsx │ │ ├── DropdownDefault.tsx │ │ ├── DropdownNotification.tsx │ │ ├── DropdownUser.tsx │ │ ├── Header.tsx │ │ ├── Sidebar.js │ │ ├── SidebarLinkGroup.tsx │ │ ├── SwitcherFour.tsx │ │ ├── SwitcherOne.tsx │ │ ├── SwitcherThree.tsx │ │ ├── SwitcherTwo.tsx │ │ ├── TableOne.tsx │ │ ├── TableThree.tsx │ │ ├── TableTwo.tsx │ │ ├── TaskHeader.tsx │ │ └── common │ │ │ └── Loader │ │ │ └── index.tsx │ ├── modals │ │ └── ConfirmModal.js │ ├── orders │ │ ├── OrderCard.js │ │ └── OrderCardStaff.js │ ├── products │ │ ├── CustomizationCard.js │ │ └── ProductCard.js │ ├── skeletons │ │ └── ProductCard.js │ └── stores │ │ ├── StaffCard.js │ │ └── StoreCard.js ├── data │ ├── address_options.json │ └── settings.json ├── hooks │ ├── useColorMode.tsx │ └── useLocalStorage.tsx ├── lib │ ├── cart.js │ ├── order_status.js │ ├── products.js │ ├── requests │ │ ├── account.js │ │ ├── cart.js │ │ ├── customers360.js │ │ ├── dashboard.js │ │ ├── orders.js │ │ ├── products.js │ │ ├── settings.js │ │ └── stores.js │ └── utils.js ├── pages │ └── api │ │ ├── account │ │ └── index.js │ │ ├── auth │ │ └── [...nextauth].js │ │ ├── cart │ │ └── calculate-price.js │ │ ├── customers-360 │ │ └── index.js │ │ ├── customers │ │ └── orders │ │ │ ├── [...orderId] │ │ │ └── index.js │ │ │ └── index.js │ │ ├── dashboard │ │ └── revenue │ │ │ └── index.js │ │ ├── payment │ │ └── [...param].js │ │ ├── products │ │ ├── [productId] │ │ │ ├── customizations │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── toggle-availability │ │ │ │ └── index.js │ │ └── index.js │ │ ├── settings │ │ └── [settingsSet] │ │ │ └── index.js │ │ ├── staffs │ │ └── orders │ │ │ ├── [...orderId] │ │ │ └── index.js │ │ │ └── index.js │ │ └── stores │ │ ├── [storeId] │ │ ├── index.js │ │ └── staffs │ │ │ └── index.js │ │ └── index.js └── services │ └── Database.js ├── tailwind.config.js ├── test ├── i18n.spec.js ├── screensize.spec.js └── totalPrice.spec.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/.env.sample -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .next -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/README.md -------------------------------------------------------------------------------- /docs/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/docs/screenshot1.png -------------------------------------------------------------------------------- /docs/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/docs/screenshot2.png -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next-i18next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/next-i18next.config.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/bagel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/bagel.jpg -------------------------------------------------------------------------------- /public/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/banner.png -------------------------------------------------------------------------------- /public/blended-coffee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/blended-coffee.jpg -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/cold-coffee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/cold-coffee.jpg -------------------------------------------------------------------------------- /public/dashboard/images/brand/brand-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/brand/brand-01.svg -------------------------------------------------------------------------------- /public/dashboard/images/brand/brand-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/brand/brand-02.svg -------------------------------------------------------------------------------- /public/dashboard/images/brand/brand-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/brand/brand-03.svg -------------------------------------------------------------------------------- /public/dashboard/images/brand/brand-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/brand/brand-04.svg -------------------------------------------------------------------------------- /public/dashboard/images/brand/brand-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/brand/brand-05.svg -------------------------------------------------------------------------------- /public/dashboard/images/cards/cards-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/cards/cards-01.png -------------------------------------------------------------------------------- /public/dashboard/images/cards/cards-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/cards/cards-02.png -------------------------------------------------------------------------------- /public/dashboard/images/cards/cards-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/cards/cards-03.png -------------------------------------------------------------------------------- /public/dashboard/images/cards/cards-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/cards/cards-04.png -------------------------------------------------------------------------------- /public/dashboard/images/cards/cards-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/cards/cards-05.png -------------------------------------------------------------------------------- /public/dashboard/images/cards/cards-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/cards/cards-06.png -------------------------------------------------------------------------------- /public/dashboard/images/country/country-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/country/country-01.svg -------------------------------------------------------------------------------- /public/dashboard/images/country/country-02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/country/country-02.svg -------------------------------------------------------------------------------- /public/dashboard/images/country/country-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/country/country-03.svg -------------------------------------------------------------------------------- /public/dashboard/images/country/country-04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/country/country-04.svg -------------------------------------------------------------------------------- /public/dashboard/images/country/country-05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/country/country-05.svg -------------------------------------------------------------------------------- /public/dashboard/images/country/country-06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/country/country-06.svg -------------------------------------------------------------------------------- /public/dashboard/images/cover/cover-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/cover/cover-01.png -------------------------------------------------------------------------------- /public/dashboard/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/favicon.ico -------------------------------------------------------------------------------- /public/dashboard/images/icon/icon-arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/icon/icon-arrow-down.svg -------------------------------------------------------------------------------- /public/dashboard/images/icon/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/icon/icon-calendar.svg -------------------------------------------------------------------------------- /public/dashboard/images/icon/icon-copy-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/icon/icon-copy-alt.svg -------------------------------------------------------------------------------- /public/dashboard/images/icon/icon-moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/icon/icon-moon.svg -------------------------------------------------------------------------------- /public/dashboard/images/icon/icon-sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/icon/icon-sun.svg -------------------------------------------------------------------------------- /public/dashboard/images/logo/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/logo/logo-dark.svg -------------------------------------------------------------------------------- /public/dashboard/images/logo/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/logo/logo-icon.svg -------------------------------------------------------------------------------- /public/dashboard/images/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/logo/logo.svg -------------------------------------------------------------------------------- /public/dashboard/images/product/product-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/product/product-01.png -------------------------------------------------------------------------------- /public/dashboard/images/product/product-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/product/product-02.png -------------------------------------------------------------------------------- /public/dashboard/images/product/product-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/product/product-03.png -------------------------------------------------------------------------------- /public/dashboard/images/product/product-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/product/product-04.png -------------------------------------------------------------------------------- /public/dashboard/images/product/product-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/product/product-thumb.png -------------------------------------------------------------------------------- /public/dashboard/images/task/task-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/task/task-01.jpg -------------------------------------------------------------------------------- /public/dashboard/images/user/user-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/user/user-01.png -------------------------------------------------------------------------------- /public/dashboard/images/user/user-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/user/user-02.png -------------------------------------------------------------------------------- /public/dashboard/images/user/user-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/user/user-03.png -------------------------------------------------------------------------------- /public/dashboard/images/user/user-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/user/user-04.png -------------------------------------------------------------------------------- /public/dashboard/images/user/user-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/user/user-05.png -------------------------------------------------------------------------------- /public/dashboard/images/user/user-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/user/user-06.png -------------------------------------------------------------------------------- /public/dashboard/images/user/user-07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/user/user-07.png -------------------------------------------------------------------------------- /public/dashboard/images/user/user-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/user/user-08.png -------------------------------------------------------------------------------- /public/dashboard/images/user/user-09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/user/user-09.png -------------------------------------------------------------------------------- /public/dashboard/images/user/user-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/user/user-10.png -------------------------------------------------------------------------------- /public/dashboard/images/user/user-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/user/user-11.png -------------------------------------------------------------------------------- /public/dashboard/images/user/user-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/user/user-12.png -------------------------------------------------------------------------------- /public/dashboard/images/user/user-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/dashboard/images/user/user-13.png -------------------------------------------------------------------------------- /public/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/default.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/github-18px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/github-18px.svg -------------------------------------------------------------------------------- /public/google-18px.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/google-18px.svg -------------------------------------------------------------------------------- /public/hot-coffee.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/hot-coffee.jpeg -------------------------------------------------------------------------------- /public/images/icons/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/android-icon-144x144.png -------------------------------------------------------------------------------- /public/images/icons/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/android-icon-192x192.png -------------------------------------------------------------------------------- /public/images/icons/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/android-icon-36x36.png -------------------------------------------------------------------------------- /public/images/icons/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/android-icon-48x48.png -------------------------------------------------------------------------------- /public/images/icons/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/android-icon-72x72.png -------------------------------------------------------------------------------- /public/images/icons/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/android-icon-96x96.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/apple-icon-114x114.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/apple-icon-120x120.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/apple-icon-144x144.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/apple-icon-152x152.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/apple-icon-180x180.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/apple-icon-57x57.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/apple-icon-60x60.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/apple-icon-72x72.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/apple-icon-76x76.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/apple-icon-precomposed.png -------------------------------------------------------------------------------- /public/images/icons/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/apple-icon.png -------------------------------------------------------------------------------- /public/images/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/favicon-16x16.png -------------------------------------------------------------------------------- /public/images/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/favicon-32x32.png -------------------------------------------------------------------------------- /public/images/icons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/favicon-96x96.png -------------------------------------------------------------------------------- /public/images/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/favicon.ico -------------------------------------------------------------------------------- /public/images/icons/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/ms-icon-144x144.png -------------------------------------------------------------------------------- /public/images/icons/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/ms-icon-150x150.png -------------------------------------------------------------------------------- /public/images/icons/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/ms-icon-310x310.png -------------------------------------------------------------------------------- /public/images/icons/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/images/icons/ms-icon-70x70.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/milktea.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/milktea.jpeg -------------------------------------------------------------------------------- /public/sandwich.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/public/sandwich.jpeg -------------------------------------------------------------------------------- /src/app/[lng]/cart/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/cart/page.js -------------------------------------------------------------------------------- /src/app/[lng]/dashboard/customer-feedbacks/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/dashboard/customer-feedbacks/page.js -------------------------------------------------------------------------------- /src/app/[lng]/dashboard/customers-360/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/dashboard/customers-360/page.js -------------------------------------------------------------------------------- /src/app/[lng]/dashboard/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/dashboard/layout.js -------------------------------------------------------------------------------- /src/app/[lng]/dashboard/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/dashboard/page.js -------------------------------------------------------------------------------- /src/app/[lng]/dashboard/products/new-product/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/dashboard/products/new-product/page.js -------------------------------------------------------------------------------- /src/app/[lng]/dashboard/products/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/dashboard/products/page.js -------------------------------------------------------------------------------- /src/app/[lng]/dashboard/products/product-details/[productId]/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/dashboard/products/product-details/[productId]/page.js -------------------------------------------------------------------------------- /src/app/[lng]/dashboard/settings/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/dashboard/settings/page.js -------------------------------------------------------------------------------- /src/app/[lng]/dashboard/stores/new-store/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/dashboard/stores/new-store/page.js -------------------------------------------------------------------------------- /src/app/[lng]/dashboard/stores/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/dashboard/stores/page.js -------------------------------------------------------------------------------- /src/app/[lng]/dashboard/stores/store-details/[storeId]/add-staff/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/dashboard/stores/store-details/[storeId]/add-staff/page.js -------------------------------------------------------------------------------- /src/app/[lng]/dashboard/stores/store-details/[storeId]/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/dashboard/stores/store-details/[storeId]/page.js -------------------------------------------------------------------------------- /src/app/[lng]/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/layout.js -------------------------------------------------------------------------------- /src/app/[lng]/login/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/login/page.js -------------------------------------------------------------------------------- /src/app/[lng]/order-details/[orderId]/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/order-details/[orderId]/page.js -------------------------------------------------------------------------------- /src/app/[lng]/order-details/[orderId]/rating/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/order-details/[orderId]/rating/page.js -------------------------------------------------------------------------------- /src/app/[lng]/orders/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/orders/page.js -------------------------------------------------------------------------------- /src/app/[lng]/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/page.js -------------------------------------------------------------------------------- /src/app/[lng]/pick-item-options/[itemId]/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/pick-item-options/[itemId]/page.js -------------------------------------------------------------------------------- /src/app/[lng]/staffs/order-details/[orderId]/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/staffs/order-details/[orderId]/page.js -------------------------------------------------------------------------------- /src/app/[lng]/staffs/orders/inactive/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/staffs/orders/inactive/page.js -------------------------------------------------------------------------------- /src/app/[lng]/staffs/orders/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/staffs/orders/layout.js -------------------------------------------------------------------------------- /src/app/[lng]/staffs/orders/new/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/staffs/orders/new/page.js -------------------------------------------------------------------------------- /src/app/[lng]/staffs/orders/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/staffs/orders/page.js -------------------------------------------------------------------------------- /src/app/[lng]/staffs/orders/processing/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/staffs/orders/processing/page.js -------------------------------------------------------------------------------- /src/app/[lng]/user/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/[lng]/user/page.js -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/i18n/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/i18n/client.js -------------------------------------------------------------------------------- /src/app/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/i18n/index.js -------------------------------------------------------------------------------- /src/app/i18n/locales/cn/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/i18n/locales/cn/common.json -------------------------------------------------------------------------------- /src/app/i18n/locales/en/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/i18n/locales/en/common.json -------------------------------------------------------------------------------- /src/app/i18n/locales/vi/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/i18n/locales/vi/common.json -------------------------------------------------------------------------------- /src/app/i18n/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/i18n/settings.js -------------------------------------------------------------------------------- /src/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/layout.js -------------------------------------------------------------------------------- /src/app/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/app/page.js -------------------------------------------------------------------------------- /src/components/AddressPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/AddressPicker.js -------------------------------------------------------------------------------- /src/components/ApexChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/ApexChart.js -------------------------------------------------------------------------------- /src/components/Comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/Comment.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/ImageUploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/ImageUploader.js -------------------------------------------------------------------------------- /src/components/LangSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/LangSelector.js -------------------------------------------------------------------------------- /src/components/LoadingSvg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/LoadingSvg.js -------------------------------------------------------------------------------- /src/components/MainMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/MainMenu.js -------------------------------------------------------------------------------- /src/components/Rating.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/Rating.js -------------------------------------------------------------------------------- /src/components/RatingInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/RatingInput.js -------------------------------------------------------------------------------- /src/components/RatingWithNumbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/RatingWithNumbers.js -------------------------------------------------------------------------------- /src/components/buttons/BackButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/buttons/BackButton.js -------------------------------------------------------------------------------- /src/components/buttons/XButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/buttons/XButton.js -------------------------------------------------------------------------------- /src/components/cart/CartItemCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/cart/CartItemCard.js -------------------------------------------------------------------------------- /src/components/cart/Payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/cart/Payment.js -------------------------------------------------------------------------------- /src/components/dashboard/Breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/Breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/dashboard/CardFour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/CardFour.tsx -------------------------------------------------------------------------------- /src/components/dashboard/CardOne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/CardOne.js -------------------------------------------------------------------------------- /src/components/dashboard/CardThree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/CardThree.tsx -------------------------------------------------------------------------------- /src/components/dashboard/CardTwo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/CardTwo.js -------------------------------------------------------------------------------- /src/components/dashboard/ChartFive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/ChartFive.tsx -------------------------------------------------------------------------------- /src/components/dashboard/ChartFour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/ChartFour.tsx -------------------------------------------------------------------------------- /src/components/dashboard/ChartOne.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/ChartOne.tsx -------------------------------------------------------------------------------- /src/components/dashboard/ChartThree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/ChartThree.tsx -------------------------------------------------------------------------------- /src/components/dashboard/ChartTwo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/ChartTwo.tsx -------------------------------------------------------------------------------- /src/components/dashboard/CheckboxFive.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/CheckboxFive.tsx -------------------------------------------------------------------------------- /src/components/dashboard/CheckboxFour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/CheckboxFour.tsx -------------------------------------------------------------------------------- /src/components/dashboard/CheckboxOne.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/CheckboxOne.tsx -------------------------------------------------------------------------------- /src/components/dashboard/CheckboxThree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/CheckboxThree.tsx -------------------------------------------------------------------------------- /src/components/dashboard/CheckboxTwo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/CheckboxTwo.tsx -------------------------------------------------------------------------------- /src/components/dashboard/DarkModeSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/DarkModeSwitcher.tsx -------------------------------------------------------------------------------- /src/components/dashboard/DataStats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/DataStats.tsx -------------------------------------------------------------------------------- /src/components/dashboard/DropdownDefault.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/DropdownDefault.tsx -------------------------------------------------------------------------------- /src/components/dashboard/DropdownNotification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/DropdownNotification.tsx -------------------------------------------------------------------------------- /src/components/dashboard/DropdownUser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/DropdownUser.tsx -------------------------------------------------------------------------------- /src/components/dashboard/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/Header.tsx -------------------------------------------------------------------------------- /src/components/dashboard/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/Sidebar.js -------------------------------------------------------------------------------- /src/components/dashboard/SidebarLinkGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/SidebarLinkGroup.tsx -------------------------------------------------------------------------------- /src/components/dashboard/SwitcherFour.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/SwitcherFour.tsx -------------------------------------------------------------------------------- /src/components/dashboard/SwitcherOne.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/SwitcherOne.tsx -------------------------------------------------------------------------------- /src/components/dashboard/SwitcherThree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/SwitcherThree.tsx -------------------------------------------------------------------------------- /src/components/dashboard/SwitcherTwo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/SwitcherTwo.tsx -------------------------------------------------------------------------------- /src/components/dashboard/TableOne.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/TableOne.tsx -------------------------------------------------------------------------------- /src/components/dashboard/TableThree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/TableThree.tsx -------------------------------------------------------------------------------- /src/components/dashboard/TableTwo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/TableTwo.tsx -------------------------------------------------------------------------------- /src/components/dashboard/TaskHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/TaskHeader.tsx -------------------------------------------------------------------------------- /src/components/dashboard/common/Loader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/dashboard/common/Loader/index.tsx -------------------------------------------------------------------------------- /src/components/modals/ConfirmModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/modals/ConfirmModal.js -------------------------------------------------------------------------------- /src/components/orders/OrderCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/orders/OrderCard.js -------------------------------------------------------------------------------- /src/components/orders/OrderCardStaff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/orders/OrderCardStaff.js -------------------------------------------------------------------------------- /src/components/products/CustomizationCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/products/CustomizationCard.js -------------------------------------------------------------------------------- /src/components/products/ProductCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/products/ProductCard.js -------------------------------------------------------------------------------- /src/components/skeletons/ProductCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/skeletons/ProductCard.js -------------------------------------------------------------------------------- /src/components/stores/StaffCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/stores/StaffCard.js -------------------------------------------------------------------------------- /src/components/stores/StoreCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/components/stores/StoreCard.js -------------------------------------------------------------------------------- /src/data/address_options.json: -------------------------------------------------------------------------------- 1 | ["At the counter"] 2 | -------------------------------------------------------------------------------- /src/data/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "tax_rate": 0.0725 3 | } 4 | -------------------------------------------------------------------------------- /src/hooks/useColorMode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/hooks/useColorMode.tsx -------------------------------------------------------------------------------- /src/hooks/useLocalStorage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/hooks/useLocalStorage.tsx -------------------------------------------------------------------------------- /src/lib/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/lib/cart.js -------------------------------------------------------------------------------- /src/lib/order_status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/lib/order_status.js -------------------------------------------------------------------------------- /src/lib/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/lib/products.js -------------------------------------------------------------------------------- /src/lib/requests/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/lib/requests/account.js -------------------------------------------------------------------------------- /src/lib/requests/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/lib/requests/cart.js -------------------------------------------------------------------------------- /src/lib/requests/customers360.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/lib/requests/customers360.js -------------------------------------------------------------------------------- /src/lib/requests/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/lib/requests/dashboard.js -------------------------------------------------------------------------------- /src/lib/requests/orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/lib/requests/orders.js -------------------------------------------------------------------------------- /src/lib/requests/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/lib/requests/products.js -------------------------------------------------------------------------------- /src/lib/requests/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/lib/requests/settings.js -------------------------------------------------------------------------------- /src/lib/requests/stores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/lib/requests/stores.js -------------------------------------------------------------------------------- /src/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/lib/utils.js -------------------------------------------------------------------------------- /src/pages/api/account/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/pages/api/account/index.js -------------------------------------------------------------------------------- /src/pages/api/auth/[...nextauth].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/pages/api/auth/[...nextauth].js -------------------------------------------------------------------------------- /src/pages/api/cart/calculate-price.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/pages/api/cart/calculate-price.js -------------------------------------------------------------------------------- /src/pages/api/customers-360/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/pages/api/customers-360/index.js -------------------------------------------------------------------------------- /src/pages/api/customers/orders/[...orderId]/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/pages/api/customers/orders/[...orderId]/index.js -------------------------------------------------------------------------------- /src/pages/api/customers/orders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/pages/api/customers/orders/index.js -------------------------------------------------------------------------------- /src/pages/api/dashboard/revenue/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/pages/api/dashboard/revenue/index.js -------------------------------------------------------------------------------- /src/pages/api/payment/[...param].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/pages/api/payment/[...param].js -------------------------------------------------------------------------------- /src/pages/api/products/[productId]/customizations/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/pages/api/products/[productId]/customizations/index.js -------------------------------------------------------------------------------- /src/pages/api/products/[productId]/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/pages/api/products/[productId]/index.js -------------------------------------------------------------------------------- /src/pages/api/products/[productId]/toggle-availability/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/pages/api/products/[productId]/toggle-availability/index.js -------------------------------------------------------------------------------- /src/pages/api/products/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/pages/api/products/index.js -------------------------------------------------------------------------------- /src/pages/api/settings/[settingsSet]/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/pages/api/settings/[settingsSet]/index.js -------------------------------------------------------------------------------- /src/pages/api/staffs/orders/[...orderId]/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/pages/api/staffs/orders/[...orderId]/index.js -------------------------------------------------------------------------------- /src/pages/api/staffs/orders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/pages/api/staffs/orders/index.js -------------------------------------------------------------------------------- /src/pages/api/stores/[storeId]/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/pages/api/stores/[storeId]/index.js -------------------------------------------------------------------------------- /src/pages/api/stores/[storeId]/staffs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/pages/api/stores/[storeId]/staffs/index.js -------------------------------------------------------------------------------- /src/pages/api/stores/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/pages/api/stores/index.js -------------------------------------------------------------------------------- /src/services/Database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/src/services/Database.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /test/i18n.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/test/i18n.spec.js -------------------------------------------------------------------------------- /test/screensize.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/test/screensize.spec.js -------------------------------------------------------------------------------- /test/totalPrice.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/test/totalPrice.spec.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NextCafeteria/cafeteria/HEAD/tsconfig.json --------------------------------------------------------------------------------