├── .eslintrc.json ├── .gitignore ├── README.md ├── actions ├── get-graph-revenue.ts ├── get-sales-count.ts ├── get-stock-count.ts └── get-total-revenue.ts ├── app ├── (auth) │ └── (routes) │ │ ├── layout.tsx │ │ ├── sign-in │ │ └── [[...sign-in]] │ │ │ └── page.tsx │ │ └── sign-up │ │ └── page.tsx ├── (dashboard) │ └── [storeId] │ │ ├── (routes) │ │ ├── billboards │ │ │ ├── [billboardId] │ │ │ │ ├── components │ │ │ │ │ └── billboard-form.tsx │ │ │ │ └── page.tsx │ │ │ ├── components │ │ │ │ ├── cell-action.tsx │ │ │ │ ├── client.tsx │ │ │ │ └── column.tsx │ │ │ └── page.tsx │ │ ├── categories │ │ │ ├── [categoryId] │ │ │ │ ├── components │ │ │ │ │ └── category-form.tsx.tsx │ │ │ │ └── page.tsx │ │ │ ├── components │ │ │ │ ├── cell-action.tsx │ │ │ │ ├── client.tsx │ │ │ │ └── column.tsx │ │ │ └── page.tsx │ │ ├── colors │ │ │ ├── [colorId] │ │ │ │ ├── components │ │ │ │ │ └── color-form.tsx │ │ │ │ └── page.tsx │ │ │ ├── components │ │ │ │ ├── cell-action.tsx │ │ │ │ ├── client.tsx │ │ │ │ └── column.tsx │ │ │ └── page.tsx │ │ ├── orders │ │ │ ├── components │ │ │ │ ├── client.tsx │ │ │ │ └── column.tsx │ │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── products │ │ │ ├── [productId] │ │ │ │ ├── components │ │ │ │ │ └── product-form.tsx │ │ │ │ └── page.tsx │ │ │ ├── components │ │ │ │ ├── cell-action.tsx │ │ │ │ ├── client.tsx │ │ │ │ └── column.tsx │ │ │ └── page.tsx │ │ ├── settings │ │ │ ├── components │ │ │ │ └── settings-form.tsx │ │ │ └── page.tsx │ │ └── sizes │ │ │ ├── [sizeId] │ │ │ ├── components │ │ │ │ └── size-form.tsx │ │ │ └── page.tsx │ │ │ ├── components │ │ │ ├── cell-action.tsx │ │ │ ├── client.tsx │ │ │ └── column.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 │ │ └── webhook │ │ │ └── route.ts │ └── stores │ │ ├── [storeId] │ │ └── route.ts │ │ └── route.ts ├── favicon.ico ├── globals.css └── layout.tsx ├── components.json ├── components ├── Navbar.tsx ├── main-nav.tsx ├── modal │ ├── alert-modal.tsx │ └── store-modal.tsx ├── overview.tsx ├── store-switcher.tsx ├── theme-toggle.tsx └── ui │ ├── alert.tsx │ ├── api-alert.tsx │ ├── api-list.tsx │ ├── badge.tsx │ ├── button.tsx │ ├── card.tsx │ ├── checkbox.tsx │ ├── command.tsx │ ├── data-table.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── form.tsx │ ├── heading.tsx │ ├── image-upload.tsx │ ├── input.tsx │ ├── label.tsx │ ├── modal.tsx │ ├── popover.tsx │ ├── select.tsx │ ├── separator.tsx │ └── table.tsx ├── hooks ├── use-origin.tsx └── use-store-modal.tsx ├── lib ├── prismadb.ts ├── stripe.ts └── utils.ts ├── middleware.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── prisma └── schema.prisma ├── provider ├── modal-provider.tsx ├── theme-provider.tsx └── toast-provider.tsx ├── public ├── next.svg └── vercel.svg ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/README.md -------------------------------------------------------------------------------- /actions/get-graph-revenue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/actions/get-graph-revenue.ts -------------------------------------------------------------------------------- /actions/get-sales-count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/actions/get-sales-count.ts -------------------------------------------------------------------------------- /actions/get-stock-count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/actions/get-stock-count.ts -------------------------------------------------------------------------------- /actions/get-total-revenue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/actions/get-total-revenue.ts -------------------------------------------------------------------------------- /app/(auth)/(routes)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(auth)/(routes)/layout.tsx -------------------------------------------------------------------------------- /app/(auth)/(routes)/sign-in/[[...sign-in]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(auth)/(routes)/sign-in/[[...sign-in]]/page.tsx -------------------------------------------------------------------------------- /app/(auth)/(routes)/sign-up/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(auth)/(routes)/sign-up/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/billboards/[billboardId]/components/billboard-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/billboards/[billboardId]/components/billboard-form.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/billboards/[billboardId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/billboards/[billboardId]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/billboards/components/cell-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/billboards/components/cell-action.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/billboards/components/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/billboards/components/client.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/billboards/components/column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/billboards/components/column.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/billboards/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/billboards/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/categories/[categoryId]/components/category-form.tsx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/categories/[categoryId]/components/category-form.tsx.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/categories/[categoryId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/categories/[categoryId]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/categories/components/cell-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/categories/components/cell-action.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/categories/components/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/categories/components/client.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/categories/components/column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/categories/components/column.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/categories/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/categories/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/colors/[colorId]/components/color-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/colors/[colorId]/components/color-form.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/colors/[colorId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/colors/[colorId]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/colors/components/cell-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/colors/components/cell-action.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/colors/components/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/colors/components/client.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/colors/components/column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/colors/components/column.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/colors/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/colors/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/orders/components/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/orders/components/client.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/orders/components/column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/orders/components/column.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/orders/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/orders/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/products/[productId]/components/product-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/products/[productId]/components/product-form.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/products/[productId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/products/[productId]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/products/components/cell-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/products/components/cell-action.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/products/components/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/products/components/client.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/products/components/column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/products/components/column.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/products/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/products/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/settings/components/settings-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/settings/components/settings-form.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/settings/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/sizes/[sizeId]/components/size-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/sizes/[sizeId]/components/size-form.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/sizes/[sizeId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/sizes/[sizeId]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/sizes/components/cell-action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/sizes/components/cell-action.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/sizes/components/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/sizes/components/client.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/sizes/components/column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/sizes/components/column.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/(routes)/sizes/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/(routes)/sizes/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/[storeId]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(dashboard)/[storeId]/layout.tsx -------------------------------------------------------------------------------- /app/(root)/(routes)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(root)/(routes)/page.tsx -------------------------------------------------------------------------------- /app/(root)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/(root)/layout.tsx -------------------------------------------------------------------------------- /app/api/[storeId]/billboards/[billboardId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/api/[storeId]/billboards/[billboardId]/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/billboards/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/api/[storeId]/billboards/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/categories/[categoryId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/api/[storeId]/categories/[categoryId]/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/categories/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/api/[storeId]/categories/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/checkout/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/api/[storeId]/checkout/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/colors/[colorId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/api/[storeId]/colors/[colorId]/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/colors/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/api/[storeId]/colors/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/products/[productId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/api/[storeId]/products/[productId]/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/products/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/api/[storeId]/products/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/sizes/[sizeId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/api/[storeId]/sizes/[sizeId]/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/sizes/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/api/[storeId]/sizes/route.ts -------------------------------------------------------------------------------- /app/api/[storeId]/webhook/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/api/[storeId]/webhook/route.ts -------------------------------------------------------------------------------- /app/api/stores/[storeId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/api/stores/[storeId]/route.ts -------------------------------------------------------------------------------- /app/api/stores/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/api/stores/route.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components.json -------------------------------------------------------------------------------- /components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/Navbar.tsx -------------------------------------------------------------------------------- /components/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/main-nav.tsx -------------------------------------------------------------------------------- /components/modal/alert-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/modal/alert-modal.tsx -------------------------------------------------------------------------------- /components/modal/store-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/modal/store-modal.tsx -------------------------------------------------------------------------------- /components/overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/overview.tsx -------------------------------------------------------------------------------- /components/store-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/store-switcher.tsx -------------------------------------------------------------------------------- /components/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/theme-toggle.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/api-alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/api-alert.tsx -------------------------------------------------------------------------------- /components/ui/api-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/api-list.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/data-table.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/heading.tsx -------------------------------------------------------------------------------- /components/ui/image-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/image-upload.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/modal.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /hooks/use-origin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/hooks/use-origin.tsx -------------------------------------------------------------------------------- /hooks/use-store-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/hooks/use-store-modal.tsx -------------------------------------------------------------------------------- /lib/prismadb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/lib/prismadb.ts -------------------------------------------------------------------------------- /lib/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/lib/stripe.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /provider/modal-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/provider/modal-provider.tsx -------------------------------------------------------------------------------- /provider/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/provider/theme-provider.tsx -------------------------------------------------------------------------------- /provider/toast-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/provider/toast-provider.tsx -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Iqtidartara/ecomerce-admin-vedio/HEAD/tsconfig.json --------------------------------------------------------------------------------