├── .env_example ├── .eslintrc.json ├── .github └── workflows │ ├── gemini_review.yml │ ├── playwright.yml │ ├── release.yml │ └── update-deps.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── LICENSE ├── README.md ├── checkly.config.ts ├── commitlint.config.ts ├── components.json ├── contents └── docs │ ├── getting-started │ ├── configure.mdx │ ├── getting-started.mdx │ ├── install.mdx │ ├── introduction.mdx │ └── rundeploy.mdx │ └── tutorials │ ├── change-logo.mdx │ ├── change-pages-text.mdx │ └── tutorials.mdx ├── e2e └── Visual.spec.tsx ├── init_db └── seed.ts ├── lint-staged.config.js ├── next-auth.d.ts ├── next.config.js ├── package.json ├── playwright.config.ts ├── postcss.config.mjs ├── prisma ├── migrations │ ├── 20240608172105_init │ │ └── migration.sql │ ├── 20240613120023_init │ │ └── migration.sql │ ├── 20240616203550_init │ │ └── migration.sql │ ├── 20240617202425_ │ │ └── migration.sql │ ├── 20240629085436_ │ │ └── migration.sql │ ├── 20240702185946_init │ │ └── migration.sql │ ├── 20240703154155_init │ │ └── migration.sql │ ├── 20240703165505_init │ │ └── migration.sql │ ├── 20240703165805_init │ │ └── migration.sql │ ├── 20240703172422_init │ │ └── migration.sql │ ├── 20240704141002_ │ │ └── migration.sql │ ├── 20240704150732_ │ │ └── migration.sql │ ├── 20240707130516_init │ │ └── migration.sql │ └── migration_lock.toml └── schema │ ├── demo.prisma │ ├── newsletter.prisma │ ├── org.prisma │ ├── posts.prisma │ ├── schema.prisma │ ├── tokens.prisma │ └── user.prisma ├── public ├── apple-icon.jpg ├── authjs.ico ├── authjs.jpg ├── avatar.webp ├── bg.png ├── chadcn.ico ├── chadcn.png ├── company.png ├── company.webp ├── company2.png ├── cover.jpg ├── faster.png ├── favicon.ico ├── features.png ├── features.webp ├── footer-grid.svg ├── footer-grid.webp ├── grid-2.svg ├── grid-original.svg ├── grid.avif ├── grid.png ├── grid.svg ├── halo.png ├── icon.ico ├── logo.jpg ├── logo.png ├── logo.svg ├── responsive.png ├── responsive.webp ├── rocket-1206.svg ├── rocket-blue.svg ├── rocket-red-50.svg ├── rocket-red.png ├── rocket-red.svg ├── rocket.png ├── rocket.webp ├── rocket_icon_182791.ico ├── service.png ├── service.webp ├── user_interface.png └── user_interface.webp ├── src ├── app │ ├── [locale] │ │ ├── (auth) │ │ │ ├── (logout) │ │ │ │ └── _actions.tsx │ │ │ ├── _components_auth │ │ │ │ └── social.tsx │ │ │ ├── _data_access │ │ │ │ ├── _data_access.tsx │ │ │ │ ├── password-reset-token.ts │ │ │ │ └── verificiation-token.ts │ │ │ ├── check-mail │ │ │ │ ├── _form.tsx │ │ │ │ └── page.tsx │ │ │ ├── error │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── login │ │ │ │ ├── _action.tsx │ │ │ │ ├── _form.tsx │ │ │ │ ├── _schemas.tsx │ │ │ │ └── page.tsx │ │ │ ├── new-password │ │ │ │ ├── _actions.tsx │ │ │ │ ├── _comp_new_pass.tsx │ │ │ │ ├── _form.tsx │ │ │ │ ├── _schemas.tsx │ │ │ │ └── page.tsx │ │ │ ├── new-verification │ │ │ │ ├── _actions.ts │ │ │ │ ├── _form.tsx │ │ │ │ └── page.tsx │ │ │ ├── register │ │ │ │ ├── _action.ts │ │ │ │ ├── _form.tsx │ │ │ │ ├── _schemas.tsx │ │ │ │ └── page.tsx │ │ │ └── reset-password │ │ │ │ ├── _actions.ts │ │ │ │ ├── _form.tsx │ │ │ │ ├── _formcontant.tsx │ │ │ │ ├── _schemas.tsx │ │ │ │ └── page.tsx │ │ ├── (marketing) │ │ │ ├── (newsletter) │ │ │ │ ├── _action.ts │ │ │ │ └── _schemas.tsx │ │ │ ├── _components_ma │ │ │ │ ├── layout │ │ │ │ │ ├── Footer.tsx │ │ │ │ │ ├── Navbar.tsx │ │ │ │ │ ├── mobile_sidebar.tsx │ │ │ │ │ ├── nav_buttons.tsx │ │ │ │ │ ├── nav_desktop.tsx │ │ │ │ │ ├── social_link.tsx │ │ │ │ │ └── theme-provider.tsx │ │ │ │ └── sections │ │ │ │ │ ├── CTA.tsx │ │ │ │ │ ├── Features.tsx │ │ │ │ │ ├── Newsletter.tsx │ │ │ │ │ ├── Sponsors.tsx │ │ │ │ │ ├── Stack.tsx │ │ │ │ │ ├── Statistics.tsx │ │ │ │ │ └── hero │ │ │ │ │ ├── Hero.tsx │ │ │ │ │ ├── HeroButton.tsx │ │ │ │ │ ├── HeroCards.tsx │ │ │ │ │ └── main-text.tsx │ │ │ ├── company │ │ │ │ ├── about │ │ │ │ │ ├── About.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── contact │ │ │ │ │ ├── _action.ts │ │ │ │ │ ├── _form.tsx │ │ │ │ │ ├── _form_content.tsx │ │ │ │ │ ├── _schemas.tsx │ │ │ │ │ └── page.tsx │ │ │ │ ├── custommers │ │ │ │ │ ├── Custommers.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── support │ │ │ │ │ ├── Services.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── legal │ │ │ │ ├── privacy-policy │ │ │ │ │ ├── PrivacyPolicy.tsx │ │ │ │ │ └── page.tsx │ │ │ │ └── terms-of-service │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── terms-of-service.tsx │ │ │ ├── page.tsx │ │ │ └── resources │ │ │ │ ├── features │ │ │ │ ├── Features_advanced.tsx │ │ │ │ └── page.tsx │ │ │ │ ├── pricing │ │ │ │ ├── Pricing.tsx │ │ │ │ └── page.tsx │ │ │ │ └── services │ │ │ │ └── page.tsx │ │ ├── (platforme) │ │ │ ├── _components │ │ │ │ ├── _navigationbar │ │ │ │ │ ├── _navbar.tsx │ │ │ │ │ └── _user-button.tsx │ │ │ │ └── _sidebar │ │ │ │ │ ├── _logout-button.tsx │ │ │ │ │ ├── _sidebar.tsx │ │ │ │ │ ├── mobile_footer.tsx │ │ │ │ │ ├── mobile_menu.tsx │ │ │ │ │ └── sidebar_menu.tsx │ │ │ ├── _constants │ │ │ │ ├── menu-right.ts │ │ │ │ ├── menu_items.ts │ │ │ │ └── navbar_items.ts │ │ │ ├── _types │ │ │ │ └── index.ts │ │ │ ├── admin │ │ │ │ ├── account-form.tsx │ │ │ │ ├── actions.tsx │ │ │ │ ├── columns.tsx │ │ │ │ ├── edit-account-sheet.tsx │ │ │ │ ├── new-account-sheet.tsx │ │ │ │ ├── page.tsx │ │ │ │ ├── schema.ts │ │ │ │ ├── use-bulk-delete-accounts.ts │ │ │ │ ├── use-create-account.ts │ │ │ │ ├── use-delete-account.ts │ │ │ │ ├── use-edit-account.ts │ │ │ │ ├── use-get-account.ts │ │ │ │ ├── use-get-accounts.ts │ │ │ │ ├── use-new-account.ts │ │ │ │ └── use-open-account.ts │ │ │ ├── dashboard │ │ │ │ ├── _components │ │ │ │ │ ├── overview.tsx │ │ │ │ │ └── recent-sales.tsx │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── profile │ │ │ │ └── page.tsx │ │ │ ├── users │ │ │ │ ├── _actions.tsx │ │ │ │ ├── _data_access.tsx │ │ │ │ └── page.tsx │ │ │ └── usersettings │ │ │ │ └── page.tsx │ │ └── (stripe) │ │ │ ├── componant_stripe │ │ │ └── PaymentForm.tsx │ │ │ ├── layout.tsx │ │ │ ├── stripe-one-shot │ │ │ └── page.tsx │ │ │ ├── stripe-subscription │ │ │ └── page.tsx │ │ │ └── success │ │ │ └── page.tsx │ ├── api │ │ ├── [[...route]] │ │ │ ├── accounts.ts │ │ │ └── route.ts │ │ ├── admin │ │ │ └── route.ts │ │ ├── auth │ │ │ └── [...nextauth] │ │ │ │ └── route.ts │ │ ├── stripe │ │ │ └── oneshot │ │ │ │ └── route.ts │ │ ├── users │ │ │ └── route.ts │ │ └── webhooks │ │ │ └── stripe │ │ │ └── route.tsx │ ├── docs │ │ ├── [[...slug]] │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ └── docs_components │ │ │ ├── anchor.tsx │ │ │ ├── copy.tsx │ │ │ ├── docs-breadcrumb.tsx │ │ │ ├── layout │ │ │ ├── footer.tsx │ │ │ ├── leftsidebar.tsx │ │ │ ├── menu.tsx │ │ │ ├── mobile-side-bar.tsx │ │ │ ├── navbar.tsx │ │ │ ├── theme-provider.tsx │ │ │ └── theme-toggle.tsx │ │ │ ├── pagination.tsx │ │ │ ├── pre.tsx │ │ │ ├── search.tsx │ │ │ ├── toc-observer.tsx │ │ │ └── toc.tsx │ ├── error.tsx │ ├── global-error.tsx │ ├── layout.tsx │ ├── manifest.ts │ ├── not-found.tsx │ └── sitemap.ts ├── components │ ├── Logo.tsx │ ├── ModeToggle.tsx │ ├── ScrollToTop.tsx │ ├── buttons │ │ ├── home-button.tsx │ │ ├── login-button.tsx │ │ └── register-button.tsx │ ├── card-wrapper.tsx │ ├── dark.tsx │ ├── data-table.tsx │ ├── error-card.tsx │ ├── error_page │ │ └── page-error.tsx │ ├── form_message │ │ ├── form-error.tsx │ │ └── form-success.tsx │ ├── gates │ │ ├── login-gate-client.tsx │ │ ├── login-gate-server.tsx │ │ ├── role-gate-client.tsx │ │ └── role-gate-server.tsx │ ├── icons.tsx │ ├── loader.tsx │ └── ui │ │ ├── accordion.tsx │ │ ├── alert.tsx │ │ ├── avatar.tsx │ │ ├── badge.tsx │ │ ├── breadcrumb.tsx │ │ ├── button.tsx │ │ ├── calendar.tsx │ │ ├── card.tsx │ │ ├── checkbox.tsx │ │ ├── collapsible.tsx │ │ ├── date-picker.tsx │ │ ├── dialog.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── hover-card.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── menubar.tsx │ │ ├── navigation-menu copy.tsx │ │ ├── navigation-menu.tsx │ │ ├── pagination.tsx │ │ ├── popover.tsx │ │ ├── radio-group.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── sonner.tsx │ │ ├── switch.tsx │ │ ├── table.tsx │ │ ├── tabs.tsx │ │ ├── textarea.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ ├── tooltip.tsx │ │ └── use-toast.ts ├── hooks │ ├── use-action.ts │ ├── use-confirm.tsx │ ├── use-current-role.ts │ └── use-current-user.ts ├── i18n.ts ├── instrumentation.ts ├── lib │ ├── auth │ │ ├── auth.config.ts │ │ ├── auth.ts │ │ └── session_user.ts │ ├── create-safe-action.ts │ ├── db │ │ └── db.ts │ ├── hono.ts │ ├── mail.ts │ ├── markdown.ts │ ├── stripe.ts │ ├── theme.tsx │ ├── tokens.ts │ └── utils.ts ├── lint-staged.config.js ├── locales │ ├── en.json │ └── fr.json ├── middleware.ts ├── providers │ ├── query-provider.tsx │ └── sheet-provider.tsx ├── routes.ts ├── styles │ └── globals.css └── texts-and-menues │ ├── about-company.tsx │ ├── advanced-features.tsx │ ├── customers.tsx │ ├── docs-nav-links.ts │ ├── docs-sidebar-links.ts │ ├── features.tsx │ ├── footer.ts │ ├── menu.ts │ ├── pricing.tsx │ ├── services.tsx │ ├── social-meta-data.ts │ ├── socials-link.ts │ ├── sponsors.tsx │ ├── stack.tsx │ └── stats.tsx ├── tailwind.config.ts ├── tsconfig.json ├── vitest-setup.ts └── vitest.config.mts /.env_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/.env_example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/gemini_review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/.github/workflows/gemini_review.yml -------------------------------------------------------------------------------- /.github/workflows/playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/.github/workflows/playwright.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/update-deps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/.github/workflows/update-deps.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | tests 3 | ini_db -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /checkly.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/checkly.config.ts -------------------------------------------------------------------------------- /commitlint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/commitlint.config.ts -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/components.json -------------------------------------------------------------------------------- /contents/docs/getting-started/configure.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/contents/docs/getting-started/configure.mdx -------------------------------------------------------------------------------- /contents/docs/getting-started/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/contents/docs/getting-started/getting-started.mdx -------------------------------------------------------------------------------- /contents/docs/getting-started/install.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/contents/docs/getting-started/install.mdx -------------------------------------------------------------------------------- /contents/docs/getting-started/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/contents/docs/getting-started/introduction.mdx -------------------------------------------------------------------------------- /contents/docs/getting-started/rundeploy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/contents/docs/getting-started/rundeploy.mdx -------------------------------------------------------------------------------- /contents/docs/tutorials/change-logo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/contents/docs/tutorials/change-logo.mdx -------------------------------------------------------------------------------- /contents/docs/tutorials/change-pages-text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/contents/docs/tutorials/change-pages-text.mdx -------------------------------------------------------------------------------- /contents/docs/tutorials/tutorials.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/contents/docs/tutorials/tutorials.mdx -------------------------------------------------------------------------------- /e2e/Visual.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/e2e/Visual.spec.tsx -------------------------------------------------------------------------------- /init_db/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/init_db/seed.ts -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/next-auth.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma/migrations/20240608172105_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/migrations/20240608172105_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240613120023_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/migrations/20240613120023_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240616203550_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/migrations/20240616203550_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240617202425_/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/migrations/20240617202425_/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240629085436_/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/migrations/20240629085436_/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240702185946_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/migrations/20240702185946_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240703154155_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/migrations/20240703154155_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240703165505_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/migrations/20240703165505_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240703165805_init/migration.sql: -------------------------------------------------------------------------------- 1 | -- DropIndex 2 | DROP INDEX "Newsletter_email_key"; 3 | -------------------------------------------------------------------------------- /prisma/migrations/20240703172422_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/migrations/20240703172422_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240704141002_/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/migrations/20240704141002_/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/20240704150732_/migration.sql: -------------------------------------------------------------------------------- 1 | -- DropIndex 2 | DROP INDEX "Demo_email_key"; 3 | -------------------------------------------------------------------------------- /prisma/migrations/20240707130516_init/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/migrations/20240707130516_init/migration.sql -------------------------------------------------------------------------------- /prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /prisma/schema/demo.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/schema/demo.prisma -------------------------------------------------------------------------------- /prisma/schema/newsletter.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/schema/newsletter.prisma -------------------------------------------------------------------------------- /prisma/schema/org.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/schema/org.prisma -------------------------------------------------------------------------------- /prisma/schema/posts.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/schema/posts.prisma -------------------------------------------------------------------------------- /prisma/schema/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/schema/schema.prisma -------------------------------------------------------------------------------- /prisma/schema/tokens.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/schema/tokens.prisma -------------------------------------------------------------------------------- /prisma/schema/user.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/prisma/schema/user.prisma -------------------------------------------------------------------------------- /public/apple-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/apple-icon.jpg -------------------------------------------------------------------------------- /public/authjs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/authjs.ico -------------------------------------------------------------------------------- /public/authjs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/authjs.jpg -------------------------------------------------------------------------------- /public/avatar.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/avatar.webp -------------------------------------------------------------------------------- /public/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/bg.png -------------------------------------------------------------------------------- /public/chadcn.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/chadcn.ico -------------------------------------------------------------------------------- /public/chadcn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/chadcn.png -------------------------------------------------------------------------------- /public/company.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/company.png -------------------------------------------------------------------------------- /public/company.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/company.webp -------------------------------------------------------------------------------- /public/company2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/company2.png -------------------------------------------------------------------------------- /public/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/cover.jpg -------------------------------------------------------------------------------- /public/faster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/faster.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/features.png -------------------------------------------------------------------------------- /public/features.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/features.webp -------------------------------------------------------------------------------- /public/footer-grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/footer-grid.svg -------------------------------------------------------------------------------- /public/footer-grid.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/footer-grid.webp -------------------------------------------------------------------------------- /public/grid-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/grid-2.svg -------------------------------------------------------------------------------- /public/grid-original.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/grid-original.svg -------------------------------------------------------------------------------- /public/grid.avif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/grid.avif -------------------------------------------------------------------------------- /public/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/grid.png -------------------------------------------------------------------------------- /public/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/grid.svg -------------------------------------------------------------------------------- /public/halo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/halo.png -------------------------------------------------------------------------------- /public/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/icon.ico -------------------------------------------------------------------------------- /public/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/logo.jpg -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/responsive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/responsive.png -------------------------------------------------------------------------------- /public/responsive.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/responsive.webp -------------------------------------------------------------------------------- /public/rocket-1206.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/rocket-1206.svg -------------------------------------------------------------------------------- /public/rocket-blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/rocket-blue.svg -------------------------------------------------------------------------------- /public/rocket-red-50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/rocket-red-50.svg -------------------------------------------------------------------------------- /public/rocket-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/rocket-red.png -------------------------------------------------------------------------------- /public/rocket-red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/rocket-red.svg -------------------------------------------------------------------------------- /public/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/rocket.png -------------------------------------------------------------------------------- /public/rocket.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/rocket.webp -------------------------------------------------------------------------------- /public/rocket_icon_182791.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/rocket_icon_182791.ico -------------------------------------------------------------------------------- /public/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/service.png -------------------------------------------------------------------------------- /public/service.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/service.webp -------------------------------------------------------------------------------- /public/user_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/user_interface.png -------------------------------------------------------------------------------- /public/user_interface.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/public/user_interface.webp -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/(logout)/_actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/(logout)/_actions.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/_components_auth/social.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/_components_auth/social.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/_data_access/_data_access.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/_data_access/_data_access.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/_data_access/password-reset-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/_data_access/password-reset-token.ts -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/_data_access/verificiation-token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/_data_access/verificiation-token.ts -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/check-mail/_form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/check-mail/_form.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/check-mail/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/check-mail/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/error/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/error/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/login/_action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/login/_action.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/login/_form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/login/_form.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/login/_schemas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/login/_schemas.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/login/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/new-password/_actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/new-password/_actions.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/new-password/_comp_new_pass.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/new-password/_comp_new_pass.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/new-password/_form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/new-password/_form.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/new-password/_schemas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/new-password/_schemas.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/new-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/new-password/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/new-verification/_actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/new-verification/_actions.ts -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/new-verification/_form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/new-verification/_form.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/new-verification/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/new-verification/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/register/_action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/register/_action.ts -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/register/_form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/register/_form.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/register/_schemas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/register/_schemas.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/register/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/register/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/reset-password/_actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/reset-password/_actions.ts -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/reset-password/_form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/reset-password/_form.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/reset-password/_formcontant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/reset-password/_formcontant.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/reset-password/_schemas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/reset-password/_schemas.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(auth)/reset-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(auth)/reset-password/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/(newsletter)/_action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/(newsletter)/_action.ts -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/(newsletter)/_schemas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/(newsletter)/_schemas.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/_components_ma/layout/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/_components_ma/layout/Footer.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/_components_ma/layout/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/_components_ma/layout/Navbar.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/_components_ma/layout/mobile_sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/_components_ma/layout/mobile_sidebar.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/_components_ma/layout/nav_buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/_components_ma/layout/nav_buttons.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/_components_ma/layout/nav_desktop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/_components_ma/layout/nav_desktop.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/_components_ma/layout/social_link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/_components_ma/layout/social_link.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/_components_ma/layout/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/_components_ma/layout/theme-provider.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/_components_ma/sections/CTA.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/_components_ma/sections/CTA.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/_components_ma/sections/Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/_components_ma/sections/Features.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/_components_ma/sections/Newsletter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/_components_ma/sections/Newsletter.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/_components_ma/sections/Sponsors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/_components_ma/sections/Sponsors.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/_components_ma/sections/Stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/_components_ma/sections/Stack.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/_components_ma/sections/Statistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/_components_ma/sections/Statistics.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/_components_ma/sections/hero/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/_components_ma/sections/hero/Hero.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/_components_ma/sections/hero/HeroButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/_components_ma/sections/hero/HeroButton.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/_components_ma/sections/hero/HeroCards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/_components_ma/sections/hero/HeroCards.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/_components_ma/sections/hero/main-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/_components_ma/sections/hero/main-text.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/company/about/About.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/company/about/About.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/company/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/company/about/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/company/contact/_action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/company/contact/_action.ts -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/company/contact/_form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/company/contact/_form.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/company/contact/_form_content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/company/contact/_form_content.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/company/contact/_schemas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/company/contact/_schemas.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/company/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/company/contact/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/company/custommers/Custommers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/company/custommers/Custommers.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/company/custommers/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/company/custommers/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/company/support/Services.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/company/support/Services.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/company/support/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/company/support/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/legal/privacy-policy/PrivacyPolicy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/legal/privacy-policy/PrivacyPolicy.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/legal/privacy-policy/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/legal/privacy-policy/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/legal/terms-of-service/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/legal/terms-of-service/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/legal/terms-of-service/terms-of-service.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/legal/terms-of-service/terms-of-service.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/resources/features/Features_advanced.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/resources/features/Features_advanced.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/resources/features/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/resources/features/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/resources/pricing/Pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/resources/pricing/Pricing.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/resources/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/resources/pricing/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(marketing)/resources/services/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(marketing)/resources/services/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/_components/_navigationbar/_navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/_components/_navigationbar/_navbar.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/_components/_navigationbar/_user-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/_components/_navigationbar/_user-button.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/_components/_sidebar/_logout-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/_components/_sidebar/_logout-button.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/_components/_sidebar/_sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/_components/_sidebar/_sidebar.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/_components/_sidebar/mobile_footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/_components/_sidebar/mobile_footer.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/_components/_sidebar/mobile_menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/_components/_sidebar/mobile_menu.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/_components/_sidebar/sidebar_menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/_components/_sidebar/sidebar_menu.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/_constants/menu-right.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/_constants/menu-right.ts -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/_constants/menu_items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/_constants/menu_items.ts -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/_constants/navbar_items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/_constants/navbar_items.ts -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/_types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/_types/index.ts -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/admin/account-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/admin/account-form.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/admin/actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/admin/actions.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/admin/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/admin/columns.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/admin/edit-account-sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/admin/edit-account-sheet.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/admin/new-account-sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/admin/new-account-sheet.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/admin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/admin/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/admin/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/admin/schema.ts -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/admin/use-bulk-delete-accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/admin/use-bulk-delete-accounts.ts -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/admin/use-create-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/admin/use-create-account.ts -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/admin/use-delete-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/admin/use-delete-account.ts -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/admin/use-edit-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/admin/use-edit-account.ts -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/admin/use-get-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/admin/use-get-account.ts -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/admin/use-get-accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/admin/use-get-accounts.ts -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/admin/use-new-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/admin/use-new-account.ts -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/admin/use-open-account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/admin/use-open-account.ts -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/dashboard/_components/overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/dashboard/_components/overview.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/dashboard/_components/recent-sales.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/dashboard/_components/recent-sales.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/profile/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/users/_actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/users/_actions.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/users/_data_access.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/users/_data_access.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/users/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/users/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(platforme)/usersettings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(platforme)/usersettings/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(stripe)/componant_stripe/PaymentForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(stripe)/componant_stripe/PaymentForm.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(stripe)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(stripe)/layout.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(stripe)/stripe-one-shot/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(stripe)/stripe-one-shot/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(stripe)/stripe-subscription/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(stripe)/stripe-subscription/page.tsx -------------------------------------------------------------------------------- /src/app/[locale]/(stripe)/success/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/[locale]/(stripe)/success/page.tsx -------------------------------------------------------------------------------- /src/app/api/[[...route]]/accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/api/[[...route]]/accounts.ts -------------------------------------------------------------------------------- /src/app/api/[[...route]]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/api/[[...route]]/route.ts -------------------------------------------------------------------------------- /src/app/api/admin/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/api/admin/route.ts -------------------------------------------------------------------------------- /src/app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /src/app/api/stripe/oneshot/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/api/stripe/oneshot/route.ts -------------------------------------------------------------------------------- /src/app/api/users/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/api/users/route.ts -------------------------------------------------------------------------------- /src/app/api/webhooks/stripe/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/api/webhooks/stripe/route.tsx -------------------------------------------------------------------------------- /src/app/docs/[[...slug]]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/docs/[[...slug]]/layout.tsx -------------------------------------------------------------------------------- /src/app/docs/[[...slug]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/docs/[[...slug]]/page.tsx -------------------------------------------------------------------------------- /src/app/docs/docs_components/anchor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/docs/docs_components/anchor.tsx -------------------------------------------------------------------------------- /src/app/docs/docs_components/copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/docs/docs_components/copy.tsx -------------------------------------------------------------------------------- /src/app/docs/docs_components/docs-breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/docs/docs_components/docs-breadcrumb.tsx -------------------------------------------------------------------------------- /src/app/docs/docs_components/layout/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/docs/docs_components/layout/footer.tsx -------------------------------------------------------------------------------- /src/app/docs/docs_components/layout/leftsidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/docs/docs_components/layout/leftsidebar.tsx -------------------------------------------------------------------------------- /src/app/docs/docs_components/layout/menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/docs/docs_components/layout/menu.tsx -------------------------------------------------------------------------------- /src/app/docs/docs_components/layout/mobile-side-bar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/docs/docs_components/layout/mobile-side-bar.tsx -------------------------------------------------------------------------------- /src/app/docs/docs_components/layout/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/docs/docs_components/layout/navbar.tsx -------------------------------------------------------------------------------- /src/app/docs/docs_components/layout/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/docs/docs_components/layout/theme-provider.tsx -------------------------------------------------------------------------------- /src/app/docs/docs_components/layout/theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/docs/docs_components/layout/theme-toggle.tsx -------------------------------------------------------------------------------- /src/app/docs/docs_components/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/docs/docs_components/pagination.tsx -------------------------------------------------------------------------------- /src/app/docs/docs_components/pre.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/docs/docs_components/pre.tsx -------------------------------------------------------------------------------- /src/app/docs/docs_components/search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/docs/docs_components/search.tsx -------------------------------------------------------------------------------- /src/app/docs/docs_components/toc-observer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/docs/docs_components/toc-observer.tsx -------------------------------------------------------------------------------- /src/app/docs/docs_components/toc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/docs/docs_components/toc.tsx -------------------------------------------------------------------------------- /src/app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/error.tsx -------------------------------------------------------------------------------- /src/app/global-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/global-error.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/manifest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/manifest.ts -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/app/sitemap.ts -------------------------------------------------------------------------------- /src/components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/Logo.tsx -------------------------------------------------------------------------------- /src/components/ModeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ModeToggle.tsx -------------------------------------------------------------------------------- /src/components/ScrollToTop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ScrollToTop.tsx -------------------------------------------------------------------------------- /src/components/buttons/home-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/buttons/home-button.tsx -------------------------------------------------------------------------------- /src/components/buttons/login-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/buttons/login-button.tsx -------------------------------------------------------------------------------- /src/components/buttons/register-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/buttons/register-button.tsx -------------------------------------------------------------------------------- /src/components/card-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/card-wrapper.tsx -------------------------------------------------------------------------------- /src/components/dark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/dark.tsx -------------------------------------------------------------------------------- /src/components/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/data-table.tsx -------------------------------------------------------------------------------- /src/components/error-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/error-card.tsx -------------------------------------------------------------------------------- /src/components/error_page/page-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/error_page/page-error.tsx -------------------------------------------------------------------------------- /src/components/form_message/form-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/form_message/form-error.tsx -------------------------------------------------------------------------------- /src/components/form_message/form-success.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/form_message/form-success.tsx -------------------------------------------------------------------------------- /src/components/gates/login-gate-client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/gates/login-gate-client.tsx -------------------------------------------------------------------------------- /src/components/gates/login-gate-server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/gates/login-gate-server.tsx -------------------------------------------------------------------------------- /src/components/gates/role-gate-client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/gates/role-gate-client.tsx -------------------------------------------------------------------------------- /src/components/gates/role-gate-server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/gates/role-gate-server.tsx -------------------------------------------------------------------------------- /src/components/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/icons.tsx -------------------------------------------------------------------------------- /src/components/loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/loader.tsx -------------------------------------------------------------------------------- /src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/calendar.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /src/components/ui/collapsible.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/collapsible.tsx -------------------------------------------------------------------------------- /src/components/ui/date-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/date-picker.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/hover-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/hover-card.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/menubar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/menubar.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/navigation-menu copy.tsx -------------------------------------------------------------------------------- /src/components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/pagination.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/pagination.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/table.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/hooks/use-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/hooks/use-action.ts -------------------------------------------------------------------------------- /src/hooks/use-confirm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/hooks/use-confirm.tsx -------------------------------------------------------------------------------- /src/hooks/use-current-role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/hooks/use-current-role.ts -------------------------------------------------------------------------------- /src/hooks/use-current-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/hooks/use-current-user.ts -------------------------------------------------------------------------------- /src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/i18n.ts -------------------------------------------------------------------------------- /src/instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/instrumentation.ts -------------------------------------------------------------------------------- /src/lib/auth/auth.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/lib/auth/auth.config.ts -------------------------------------------------------------------------------- /src/lib/auth/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/lib/auth/auth.ts -------------------------------------------------------------------------------- /src/lib/auth/session_user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/lib/auth/session_user.ts -------------------------------------------------------------------------------- /src/lib/create-safe-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/lib/create-safe-action.ts -------------------------------------------------------------------------------- /src/lib/db/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/lib/db/db.ts -------------------------------------------------------------------------------- /src/lib/hono.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/lib/hono.ts -------------------------------------------------------------------------------- /src/lib/mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/lib/mail.ts -------------------------------------------------------------------------------- /src/lib/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/lib/markdown.ts -------------------------------------------------------------------------------- /src/lib/stripe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/lib/stripe.ts -------------------------------------------------------------------------------- /src/lib/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/lib/theme.tsx -------------------------------------------------------------------------------- /src/lib/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/lib/tokens.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/lint-staged.config.js -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/locales/fr.json -------------------------------------------------------------------------------- /src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/middleware.ts -------------------------------------------------------------------------------- /src/providers/query-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/providers/query-provider.tsx -------------------------------------------------------------------------------- /src/providers/sheet-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/providers/sheet-provider.tsx -------------------------------------------------------------------------------- /src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/routes.ts -------------------------------------------------------------------------------- /src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/styles/globals.css -------------------------------------------------------------------------------- /src/texts-and-menues/about-company.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/texts-and-menues/about-company.tsx -------------------------------------------------------------------------------- /src/texts-and-menues/advanced-features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/texts-and-menues/advanced-features.tsx -------------------------------------------------------------------------------- /src/texts-and-menues/customers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/texts-and-menues/customers.tsx -------------------------------------------------------------------------------- /src/texts-and-menues/docs-nav-links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/texts-and-menues/docs-nav-links.ts -------------------------------------------------------------------------------- /src/texts-and-menues/docs-sidebar-links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/texts-and-menues/docs-sidebar-links.ts -------------------------------------------------------------------------------- /src/texts-and-menues/features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/texts-and-menues/features.tsx -------------------------------------------------------------------------------- /src/texts-and-menues/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/texts-and-menues/footer.ts -------------------------------------------------------------------------------- /src/texts-and-menues/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/texts-and-menues/menu.ts -------------------------------------------------------------------------------- /src/texts-and-menues/pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/texts-and-menues/pricing.tsx -------------------------------------------------------------------------------- /src/texts-and-menues/services.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/texts-and-menues/services.tsx -------------------------------------------------------------------------------- /src/texts-and-menues/social-meta-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/texts-and-menues/social-meta-data.ts -------------------------------------------------------------------------------- /src/texts-and-menues/socials-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/texts-and-menues/socials-link.ts -------------------------------------------------------------------------------- /src/texts-and-menues/sponsors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/texts-and-menues/sponsors.tsx -------------------------------------------------------------------------------- /src/texts-and-menues/stack.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/texts-and-menues/stack.tsx -------------------------------------------------------------------------------- /src/texts-and-menues/stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/src/texts-and-menues/stats.tsx -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/vitest-setup.ts -------------------------------------------------------------------------------- /vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maher-naija-pro/Best-Next-js-Boilerplate/HEAD/vitest.config.mts --------------------------------------------------------------------------------