├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ ├── dependency-review.yml │ └── label.yml ├── .gitignore ├── .templates ├── $$var_template │ └── $$var_filename.js ├── .editorconfig ├── template-sample-react-component │ ├── index.jsx │ └── index.scss └── template-sample │ └── index.js ├── .vscode └── settings.json ├── README.md ├── actions ├── get-graph-revenue.tsx ├── get-pending-amount.ts ├── get-sales-count.ts ├── get-stocks-count.ts └── get-total-revenue.ts ├── app ├── (auth) │ └── (routes) │ │ ├── layout.tsx │ │ ├── sign-in │ │ └── [[...sign-in]] │ │ │ └── page.tsx │ │ └── sign-up │ │ └── [[...sign-up]] │ │ └── page.tsx ├── (dashboard) │ └── [storeId] │ │ ├── (routes) │ │ ├── billboards │ │ │ ├── [billboardId] │ │ │ │ ├── components │ │ │ │ │ └── billboard-form.tsx │ │ │ │ └── page.tsx │ │ │ ├── components │ │ │ │ ├── Client.tsx │ │ │ │ ├── cell-action.tsx │ │ │ │ └── columns.tsx │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── categories │ │ │ ├── [categoryId] │ │ │ │ ├── components │ │ │ │ │ └── category-form.tsx │ │ │ │ └── page.tsx │ │ │ ├── components │ │ │ │ ├── Client.tsx │ │ │ │ ├── cell-action.tsx │ │ │ │ └── columns.tsx │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── colors │ │ │ ├── [colorId] │ │ │ │ ├── components │ │ │ │ │ └── color-form.tsx │ │ │ │ └── page.tsx │ │ │ ├── components │ │ │ │ ├── Client.tsx │ │ │ │ ├── cell-action.tsx │ │ │ │ └── columns.tsx │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── orders │ │ │ ├── components │ │ │ │ ├── Client.tsx │ │ │ │ └── columns.tsx │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── products │ │ │ ├── [productId] │ │ │ │ ├── components │ │ │ │ │ └── product-form.tsx │ │ │ │ └── page.tsx │ │ │ ├── components │ │ │ │ ├── Client.tsx │ │ │ │ ├── cell-action.tsx │ │ │ │ └── columns.tsx │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ ├── settings │ │ │ ├── components │ │ │ │ └── settings-form.tsx │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ └── sizes │ │ │ ├── [sizeId] │ │ │ ├── components │ │ │ │ └── size-form.tsx │ │ │ └── page.tsx │ │ │ ├── components │ │ │ ├── Client.tsx │ │ │ ├── cell-action.tsx │ │ │ └── columns.tsx │ │ │ ├── loading.tsx │ │ │ └── page.tsx │ │ └── layout.tsx ├── (root) │ ├── (routes) │ │ └── page.tsx │ └── layout.tsx ├── api │ ├── [storeId] │ │ ├── billboards │ │ │ ├── [billboardId] │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── categories │ │ │ ├── [categoryId] │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── checkout │ │ │ └── route.ts │ │ ├── colors │ │ │ ├── [colorId] │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ ├── products │ │ │ ├── [productId] │ │ │ │ └── route.ts │ │ │ └── route.ts │ │ └── sizes │ │ │ ├── [sizeId] │ │ │ └── route.ts │ │ │ └── route.ts │ ├── stores │ │ ├── [storeId] │ │ │ └── route.ts │ │ └── route.ts │ └── webhook │ │ └── route.ts ├── favicon.ico ├── globals.css ├── layout.tsx └── loading.tsx ├── components.json ├── components ├── dynamic-sticky-nav.tsx ├── mails │ ├── mail-display.tsx │ └── mail-list.tsx ├── main-nav.tsx ├── modals │ ├── alert-modal.tsx │ └── store-modal.tsx ├── navbar.tsx ├── overview.tsx ├── sideNav.tsx ├── store-switcher.tsx ├── theme-toggle.tsx └── ui │ ├── alert.tsx │ ├── api-alert.tsx │ ├── api-list.tsx │ ├── avatar.tsx │ ├── badge.tsx │ ├── button.tsx │ ├── calendar.tsx │ ├── card.tsx │ ├── checkbox.tsx │ ├── command.tsx │ ├── data-table-pagination.tsx │ ├── data-table.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── form.tsx │ ├── heading.tsx │ ├── image-upload.tsx │ ├── input.tsx │ ├── label.tsx │ ├── loader.tsx │ ├── modal.tsx │ ├── nav.tsx │ ├── popover.tsx │ ├── resizable.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── switch.tsx │ ├── table.tsx │ ├── tabs.tsx │ ├── textarea.tsx │ └── tooltip.tsx ├── hooks ├── use-mail.ts ├── use-origin.tsx └── use-store-modal.tsx ├── lib ├── data.tsx ├── prismadb.ts ├── stripe.ts └── utils.ts ├── middleware.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── prisma ├── migrations │ ├── 20240531104818_init_db_aiven │ │ └── migration.sql │ └── migration_lock.toml └── schema.prisma ├── providers ├── modal-provider.tsx ├── theme-provider.tsx └── toast-provider.tsx ├── public ├── next.svg └── vercel.svg ├── tailwind.config.js ├── template.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/.github/workflows/label.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/.gitignore -------------------------------------------------------------------------------- /.templates/$$var_template/$$var_filename.js: -------------------------------------------------------------------------------- 1 | export default function $$var_textInFile() { 2 | } 3 | -------------------------------------------------------------------------------- /.templates/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/.templates/.editorconfig -------------------------------------------------------------------------------- /.templates/template-sample-react-component/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/.templates/template-sample-react-component/index.jsx -------------------------------------------------------------------------------- /.templates/template-sample-react-component/index.scss: -------------------------------------------------------------------------------- 1 | .__templateNameToParamCase__ { 2 | display: inline-block; 3 | } 4 | -------------------------------------------------------------------------------- /.templates/template-sample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/.templates/template-sample/index.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/README.md -------------------------------------------------------------------------------- /actions/get-graph-revenue.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/actions/get-graph-revenue.tsx -------------------------------------------------------------------------------- /actions/get-pending-amount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/actions/get-pending-amount.ts -------------------------------------------------------------------------------- /actions/get-sales-count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/actions/get-sales-count.ts -------------------------------------------------------------------------------- /actions/get-stocks-count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/actions/get-stocks-count.ts -------------------------------------------------------------------------------- /actions/get-total-revenue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/actions/get-total-revenue.ts -------------------------------------------------------------------------------- /app/(auth)/(routes)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(auth)/(routes)/layout.tsx -------------------------------------------------------------------------------- /app/(auth)/(routes)/sign-in/[[...sign-in]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(auth)/(routes)/sign-in/[[...sign-in]]/page.tsx -------------------------------------------------------------------------------- /app/(auth)/(routes)/sign-up/[[...sign-up]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(auth)/(routes)/sign-up/[[...sign-up]]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/billboards/[billboardId]/components/billboard-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/billboards/[billboardId]/components/billboard-form.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/billboards/[billboardId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/billboards/[billboardId]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/billboards/components/Client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/billboards/components/Client.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/billboards/components/cell-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/billboards/components/cell-action.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/billboards/components/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/billboards/components/columns.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/billboards/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/billboards/loading.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/billboards/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/billboards/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/categories/[categoryId]/components/category-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/categories/[categoryId]/components/category-form.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/categories/[categoryId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/categories/[categoryId]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/categories/components/Client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/categories/components/Client.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/categories/components/cell-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/categories/components/cell-action.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/categories/components/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/categories/components/columns.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/categories/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/categories/loading.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/categories/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/categories/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/colors/[colorId]/components/color-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/colors/[colorId]/components/color-form.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/colors/[colorId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/colors/[colorId]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/colors/components/Client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/colors/components/Client.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/colors/components/cell-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/colors/components/cell-action.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/colors/components/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/colors/components/columns.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/colors/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/colors/loading.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/colors/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/colors/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/orders/components/Client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/orders/components/Client.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/orders/components/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/orders/components/columns.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/orders/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/orders/loading.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/orders/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/orders/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/products/[productId]/components/product-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/products/[productId]/components/product-form.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/products/[productId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/products/[productId]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/products/components/Client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/products/components/Client.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/products/components/cell-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/products/components/cell-action.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/products/components/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/products/components/columns.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/products/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/products/loading.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/products/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/products/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/settings/components/settings-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/settings/components/settings-form.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/settings/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/settings/loading.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/settings/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/sizes/[sizeId]/components/size-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/sizes/[sizeId]/components/size-form.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/sizes/[sizeId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/sizes/[sizeId]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/sizes/components/Client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/sizes/components/Client.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/sizes/components/cell-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/sizes/components/cell-action.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/sizes/components/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/sizes/components/columns.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/sizes/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/sizes/loading.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/sizes/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/(routes)/sizes/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(dashboard)/[storeId]/layout.tsx -------------------------------------------------------------------------------- /app/(root)/(routes)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(root)/(routes)/page.tsx -------------------------------------------------------------------------------- /app/(root)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/(root)/layout.tsx -------------------------------------------------------------------------------- /app/api/[storeId]/billboards/[billboardId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/api/[storeId]/billboards/[billboardId]/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/billboards/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/api/[storeId]/billboards/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/categories/[categoryId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/api/[storeId]/categories/[categoryId]/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/categories/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/api/[storeId]/categories/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/checkout/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/api/[storeId]/checkout/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/colors/[colorId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/api/[storeId]/colors/[colorId]/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/colors/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/api/[storeId]/colors/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/products/[productId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/api/[storeId]/products/[productId]/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/products/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/api/[storeId]/products/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/sizes/[sizeId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/api/[storeId]/sizes/[sizeId]/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/sizes/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/api/[storeId]/sizes/route.ts -------------------------------------------------------------------------------- /app/api/stores/[storeId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/api/stores/[storeId]/route.ts -------------------------------------------------------------------------------- /app/api/stores/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/api/stores/route.ts -------------------------------------------------------------------------------- /app/api/webhook/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/api/webhook/route.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/app/loading.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components.json -------------------------------------------------------------------------------- /components/dynamic-sticky-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/dynamic-sticky-nav.tsx -------------------------------------------------------------------------------- /components/mails/mail-display.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/mails/mail-display.tsx -------------------------------------------------------------------------------- /components/mails/mail-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/mails/mail-list.tsx -------------------------------------------------------------------------------- /components/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/main-nav.tsx -------------------------------------------------------------------------------- /components/modals/alert-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/modals/alert-modal.tsx -------------------------------------------------------------------------------- /components/modals/store-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/modals/store-modal.tsx -------------------------------------------------------------------------------- /components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/navbar.tsx -------------------------------------------------------------------------------- /components/overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/overview.tsx -------------------------------------------------------------------------------- /components/sideNav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/sideNav.tsx -------------------------------------------------------------------------------- /components/store-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/store-switcher.tsx -------------------------------------------------------------------------------- /components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/theme-toggle.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/api-alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/api-alert.tsx -------------------------------------------------------------------------------- /components/ui/api-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/api-list.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/calendar.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/data-table-pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/data-table-pagination.tsx -------------------------------------------------------------------------------- /components/ui/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/data-table.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/heading.tsx -------------------------------------------------------------------------------- /components/ui/image-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/image-upload.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/loader.tsx -------------------------------------------------------------------------------- /components/ui/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/modal.tsx -------------------------------------------------------------------------------- /components/ui/nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/nav.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/resizable.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /hooks/use-mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/hooks/use-mail.ts -------------------------------------------------------------------------------- /hooks/use-origin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/hooks/use-origin.tsx -------------------------------------------------------------------------------- /hooks/use-store-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/hooks/use-store-modal.tsx -------------------------------------------------------------------------------- /lib/data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/lib/data.tsx -------------------------------------------------------------------------------- /lib/prismadb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/lib/prismadb.ts -------------------------------------------------------------------------------- /lib/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/lib/stripe.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/migrations/20240531104818_init_db_aiven/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/prisma/migrations/20240531104818_init_db_aiven/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /providers/modal-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/providers/modal-provider.tsx -------------------------------------------------------------------------------- /providers/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/providers/theme-provider.tsx -------------------------------------------------------------------------------- /providers/toast-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/providers/toast-provider.tsx -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /template.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/template.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lalitdotdev/omnidash/HEAD/tsconfig.json --------------------------------------------------------------------------------