├── .env.example ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── app ├── (dashboard) │ └── dashboard │ │ ├── categories │ │ ├── [categoryId] │ │ │ └── page.tsx │ │ ├── loading.tsx │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── orders │ │ ├── loading.tsx │ │ └── page.tsx │ │ ├── page.tsx │ │ ├── products │ │ ├── [productId] │ │ │ └── page.tsx │ │ ├── loading.tsx │ │ └── page.tsx │ │ └── settings │ │ ├── loading.tsx │ │ └── page.tsx ├── (marketing) │ ├── layout.tsx │ ├── page.tsx │ ├── product │ │ └── [handle] │ │ │ ├── loadint.tsx │ │ │ └── page.tsx │ └── store │ │ ├── loading.tsx │ │ └── page.tsx ├── api │ ├── auth │ │ └── [...nextauth] │ │ │ └── route.ts │ ├── categories │ │ ├── [categoryId] │ │ │ └── route.ts │ │ └── route.ts │ ├── products │ │ ├── [productId] │ │ │ └── route.ts │ │ └── route.ts │ └── uploadthing │ │ ├── core.ts │ │ └── route.ts ├── favicon.ico ├── fonts │ ├── SF-Pro-Display-Medium.otf │ └── index.ts └── layout.tsx ├── components.json ├── components ├── analytics.tsx ├── dashboard │ ├── card-skeleton.tsx │ ├── category-create-button.tsx │ ├── category-form.tsx │ ├── category-item.tsx │ ├── category-operations.tsx │ ├── editor.tsx │ ├── empty-placeholder.tsx │ ├── file-upload.tsx │ ├── header.tsx │ ├── heading.tsx │ ├── image-upload.tsx │ ├── product-create-button.tsx │ ├── product-form.tsx │ ├── product-item.tsx │ ├── product-operations.tsx │ └── shell.tsx ├── google.tsx ├── icons.tsx ├── leaflet.tsx ├── loading-dots.module.css ├── loading-dots.tsx ├── main-nav.tsx ├── marketing │ ├── faq │ │ ├── faq-data.tsx │ │ ├── faq-item.tsx │ │ └── index.tsx │ ├── featuresTab │ │ ├── features-tab-data.tsx │ │ ├── features-tab-item.tsx │ │ └── index.tsx │ ├── hero │ │ └── hero-section.tsx │ ├── opensource │ │ └── opensource-section.tsx │ ├── scrollToTop │ │ └── index.tsx │ └── stack │ │ └── stack-section.tsx ├── mobile-nav.tsx ├── modal.tsx ├── modals │ ├── alert-modal.tsx │ └── modal.tsx ├── mode-toggle.tsx ├── nav-signin-button.tsx ├── nav.tsx ├── product │ ├── container.tsx │ ├── currency.tsx │ ├── gallery.tsx │ ├── grid-tile-image.tsx │ ├── no-results.tsx │ ├── product-card.tsx │ ├── product-description.tsx │ ├── product-info.tsx │ └── product-list.tsx ├── sign-in-modal.tsx ├── site-footer.tsx ├── tailwind-indicator.tsx ├── theme-provider.tsx ├── ui │ ├── accordion.tsx │ ├── alert-dialog.tsx │ ├── alert.tsx │ ├── aspect-ratio.tsx │ ├── avatar.tsx │ ├── badge.tsx │ ├── button.tsx │ ├── calendar.tsx │ ├── card.tsx │ ├── checkbox.tsx │ ├── collapsible.tsx │ ├── command.tsx │ ├── context-menu.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── form.tsx │ ├── hover-card.tsx │ ├── input.tsx │ ├── label.tsx │ ├── menubar.tsx │ ├── navigation-menu.tsx │ ├── popover.tsx │ ├── progress.tsx │ ├── radio-group.tsx │ ├── scroll-area.tsx │ ├── select.tsx │ ├── separator.tsx │ ├── sheet.tsx │ ├── skeleton.tsx │ ├── slider.tsx │ ├── switch.tsx │ ├── table.tsx │ ├── tabs.tsx │ ├── textarea.tsx │ ├── toast.tsx │ ├── toaster.tsx │ ├── toggle.tsx │ ├── tooltip.tsx │ └── use-toast.ts ├── user-account-nav.tsx └── user-avatar.tsx ├── config ├── dashboard.ts ├── marketing.ts └── site.ts ├── lib ├── auth.ts ├── db.ts ├── hooks │ ├── use-intersection-observer.ts │ ├── use-local-storage.ts │ ├── use-lock-body.ts │ ├── use-mounted.ts │ ├── use-scroll.ts │ └── use-window-size.ts ├── session.ts ├── uploadthing.ts ├── utils.ts └── validations │ ├── auth.ts │ ├── og.ts │ ├── product.ts │ └── user.ts ├── middleware.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── prettier.config.js ├── prisma └── schema.prisma ├── public ├── hero-dark.png ├── hero-light.png ├── images │ ├── features │ │ ├── features-dark-01.svg │ │ └── features-light-01.svg │ └── icon │ │ ├── icon-minus-dark.svg │ │ ├── icon-minus-light.svg │ │ ├── icon-plus-dark.svg │ │ └── icon-plus-light.svg ├── product-dark.png ├── product-light.png ├── store-dark.png └── store-light.png ├── styles ├── editor.css └── globals.css ├── tailwind.config.js ├── tsconfig.json └── types └── index.d.ts /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | yarn.lock 2 | node_modules 3 | .next 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/README.md -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/categories/[categoryId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/(dashboard)/dashboard/categories/[categoryId]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/categories/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/(dashboard)/dashboard/categories/loading.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/categories/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/(dashboard)/dashboard/categories/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/(dashboard)/dashboard/layout.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/orders/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/(dashboard)/dashboard/orders/loading.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/orders/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/(dashboard)/dashboard/orders/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/(dashboard)/dashboard/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/products/[productId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/(dashboard)/dashboard/products/[productId]/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/products/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/(dashboard)/dashboard/products/loading.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/products/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/(dashboard)/dashboard/products/page.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/settings/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/(dashboard)/dashboard/settings/loading.tsx -------------------------------------------------------------------------------- /app/(dashboard)/dashboard/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/(dashboard)/dashboard/settings/page.tsx -------------------------------------------------------------------------------- /app/(marketing)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/(marketing)/layout.tsx -------------------------------------------------------------------------------- /app/(marketing)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/(marketing)/page.tsx -------------------------------------------------------------------------------- /app/(marketing)/product/[handle]/loadint.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/(marketing)/product/[handle]/loadint.tsx -------------------------------------------------------------------------------- /app/(marketing)/product/[handle]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/(marketing)/product/[handle]/page.tsx -------------------------------------------------------------------------------- /app/(marketing)/store/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/(marketing)/store/loading.tsx -------------------------------------------------------------------------------- /app/(marketing)/store/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/(marketing)/store/page.tsx -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /app/api/categories/[categoryId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/api/categories/[categoryId]/route.ts -------------------------------------------------------------------------------- /app/api/categories/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/api/categories/route.ts -------------------------------------------------------------------------------- /app/api/products/[productId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/api/products/[productId]/route.ts -------------------------------------------------------------------------------- /app/api/products/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/api/products/route.ts -------------------------------------------------------------------------------- /app/api/uploadthing/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/api/uploadthing/core.ts -------------------------------------------------------------------------------- /app/api/uploadthing/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/api/uploadthing/route.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/fonts/SF-Pro-Display-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/fonts/SF-Pro-Display-Medium.otf -------------------------------------------------------------------------------- /app/fonts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/fonts/index.ts -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components.json -------------------------------------------------------------------------------- /components/analytics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/analytics.tsx -------------------------------------------------------------------------------- /components/dashboard/card-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/dashboard/card-skeleton.tsx -------------------------------------------------------------------------------- /components/dashboard/category-create-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/dashboard/category-create-button.tsx -------------------------------------------------------------------------------- /components/dashboard/category-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/dashboard/category-form.tsx -------------------------------------------------------------------------------- /components/dashboard/category-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/dashboard/category-item.tsx -------------------------------------------------------------------------------- /components/dashboard/category-operations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/dashboard/category-operations.tsx -------------------------------------------------------------------------------- /components/dashboard/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/dashboard/editor.tsx -------------------------------------------------------------------------------- /components/dashboard/empty-placeholder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/dashboard/empty-placeholder.tsx -------------------------------------------------------------------------------- /components/dashboard/file-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/dashboard/file-upload.tsx -------------------------------------------------------------------------------- /components/dashboard/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/dashboard/header.tsx -------------------------------------------------------------------------------- /components/dashboard/heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/dashboard/heading.tsx -------------------------------------------------------------------------------- /components/dashboard/image-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/dashboard/image-upload.tsx -------------------------------------------------------------------------------- /components/dashboard/product-create-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/dashboard/product-create-button.tsx -------------------------------------------------------------------------------- /components/dashboard/product-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/dashboard/product-form.tsx -------------------------------------------------------------------------------- /components/dashboard/product-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/dashboard/product-item.tsx -------------------------------------------------------------------------------- /components/dashboard/product-operations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/dashboard/product-operations.tsx -------------------------------------------------------------------------------- /components/dashboard/shell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/dashboard/shell.tsx -------------------------------------------------------------------------------- /components/google.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/google.tsx -------------------------------------------------------------------------------- /components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/icons.tsx -------------------------------------------------------------------------------- /components/leaflet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/leaflet.tsx -------------------------------------------------------------------------------- /components/loading-dots.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/loading-dots.module.css -------------------------------------------------------------------------------- /components/loading-dots.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/loading-dots.tsx -------------------------------------------------------------------------------- /components/main-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/main-nav.tsx -------------------------------------------------------------------------------- /components/marketing/faq/faq-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/marketing/faq/faq-data.tsx -------------------------------------------------------------------------------- /components/marketing/faq/faq-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/marketing/faq/faq-item.tsx -------------------------------------------------------------------------------- /components/marketing/faq/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/marketing/faq/index.tsx -------------------------------------------------------------------------------- /components/marketing/featuresTab/features-tab-data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/marketing/featuresTab/features-tab-data.tsx -------------------------------------------------------------------------------- /components/marketing/featuresTab/features-tab-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/marketing/featuresTab/features-tab-item.tsx -------------------------------------------------------------------------------- /components/marketing/featuresTab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/marketing/featuresTab/index.tsx -------------------------------------------------------------------------------- /components/marketing/hero/hero-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/marketing/hero/hero-section.tsx -------------------------------------------------------------------------------- /components/marketing/opensource/opensource-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/marketing/opensource/opensource-section.tsx -------------------------------------------------------------------------------- /components/marketing/scrollToTop/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/marketing/scrollToTop/index.tsx -------------------------------------------------------------------------------- /components/marketing/stack/stack-section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/marketing/stack/stack-section.tsx -------------------------------------------------------------------------------- /components/mobile-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/mobile-nav.tsx -------------------------------------------------------------------------------- /components/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/modal.tsx -------------------------------------------------------------------------------- /components/modals/alert-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/modals/alert-modal.tsx -------------------------------------------------------------------------------- /components/modals/modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/modals/modal.tsx -------------------------------------------------------------------------------- /components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/mode-toggle.tsx -------------------------------------------------------------------------------- /components/nav-signin-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/nav-signin-button.tsx -------------------------------------------------------------------------------- /components/nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/nav.tsx -------------------------------------------------------------------------------- /components/product/container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/product/container.tsx -------------------------------------------------------------------------------- /components/product/currency.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/product/currency.tsx -------------------------------------------------------------------------------- /components/product/gallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/product/gallery.tsx -------------------------------------------------------------------------------- /components/product/grid-tile-image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/product/grid-tile-image.tsx -------------------------------------------------------------------------------- /components/product/no-results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/product/no-results.tsx -------------------------------------------------------------------------------- /components/product/product-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/product/product-card.tsx -------------------------------------------------------------------------------- /components/product/product-description.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/product/product-description.tsx -------------------------------------------------------------------------------- /components/product/product-info.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/product/product-info.tsx -------------------------------------------------------------------------------- /components/product/product-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/product/product-list.tsx -------------------------------------------------------------------------------- /components/sign-in-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/sign-in-modal.tsx -------------------------------------------------------------------------------- /components/site-footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/site-footer.tsx -------------------------------------------------------------------------------- /components/tailwind-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/tailwind-indicator.tsx -------------------------------------------------------------------------------- /components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/theme-provider.tsx -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/alert.tsx -------------------------------------------------------------------------------- /components/ui/aspect-ratio.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/aspect-ratio.tsx -------------------------------------------------------------------------------- /components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/avatar.tsx -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/calendar.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/context-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/context-menu.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/form.tsx -------------------------------------------------------------------------------- /components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/menubar.tsx -------------------------------------------------------------------------------- /components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/popover.tsx -------------------------------------------------------------------------------- /components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/progress.tsx -------------------------------------------------------------------------------- /components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/select.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/sheet.tsx -------------------------------------------------------------------------------- /components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/slider.tsx -------------------------------------------------------------------------------- /components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/switch.tsx -------------------------------------------------------------------------------- /components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/table.tsx -------------------------------------------------------------------------------- /components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/tabs.tsx -------------------------------------------------------------------------------- /components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/textarea.tsx -------------------------------------------------------------------------------- /components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/toast.tsx -------------------------------------------------------------------------------- /components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/toaster.tsx -------------------------------------------------------------------------------- /components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/toggle.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/ui/use-toast.ts -------------------------------------------------------------------------------- /components/user-account-nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/user-account-nav.tsx -------------------------------------------------------------------------------- /components/user-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/components/user-avatar.tsx -------------------------------------------------------------------------------- /config/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/config/dashboard.ts -------------------------------------------------------------------------------- /config/marketing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/config/marketing.ts -------------------------------------------------------------------------------- /config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/config/site.ts -------------------------------------------------------------------------------- /lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/lib/auth.ts -------------------------------------------------------------------------------- /lib/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/lib/db.ts -------------------------------------------------------------------------------- /lib/hooks/use-intersection-observer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/lib/hooks/use-intersection-observer.ts -------------------------------------------------------------------------------- /lib/hooks/use-local-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/lib/hooks/use-local-storage.ts -------------------------------------------------------------------------------- /lib/hooks/use-lock-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/lib/hooks/use-lock-body.ts -------------------------------------------------------------------------------- /lib/hooks/use-mounted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/lib/hooks/use-mounted.ts -------------------------------------------------------------------------------- /lib/hooks/use-scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/lib/hooks/use-scroll.ts -------------------------------------------------------------------------------- /lib/hooks/use-window-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/lib/hooks/use-window-size.ts -------------------------------------------------------------------------------- /lib/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/lib/session.ts -------------------------------------------------------------------------------- /lib/uploadthing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/lib/uploadthing.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /lib/validations/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/lib/validations/auth.ts -------------------------------------------------------------------------------- /lib/validations/og.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/lib/validations/og.ts -------------------------------------------------------------------------------- /lib/validations/product.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/lib/validations/product.ts -------------------------------------------------------------------------------- /lib/validations/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/lib/validations/user.ts -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/prettier.config.js -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/hero-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/public/hero-dark.png -------------------------------------------------------------------------------- /public/hero-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/public/hero-light.png -------------------------------------------------------------------------------- /public/images/features/features-dark-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/public/images/features/features-dark-01.svg -------------------------------------------------------------------------------- /public/images/features/features-light-01.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/public/images/features/features-light-01.svg -------------------------------------------------------------------------------- /public/images/icon/icon-minus-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/public/images/icon/icon-minus-dark.svg -------------------------------------------------------------------------------- /public/images/icon/icon-minus-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/public/images/icon/icon-minus-light.svg -------------------------------------------------------------------------------- /public/images/icon/icon-plus-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/public/images/icon/icon-plus-dark.svg -------------------------------------------------------------------------------- /public/images/icon/icon-plus-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/public/images/icon/icon-plus-light.svg -------------------------------------------------------------------------------- /public/product-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/public/product-dark.png -------------------------------------------------------------------------------- /public/product-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/public/product-light.png -------------------------------------------------------------------------------- /public/store-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/public/store-dark.png -------------------------------------------------------------------------------- /public/store-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/public/store-light.png -------------------------------------------------------------------------------- /styles/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/styles/editor.css -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TamerTawfik/dcreator/HEAD/types/index.d.ts --------------------------------------------------------------------------------