├── .all-contributorsrc ├── .env.example ├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .prettierrc ├── .tina ├── __generated__ │ ├── .gitignore │ ├── _graphql.json │ ├── _lookup.json │ ├── _schema.json │ ├── frags.gql │ ├── queries.gql │ ├── schema.gql │ └── types.ts └── schema.ts ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── components ├── Accordion.tsx ├── ArticleCard.tsx ├── ArticleImage.tsx ├── AutofitGrid.tsx ├── BasicCard.tsx ├── BasicSection.tsx ├── Button.tsx ├── ButtonGroup.tsx ├── ClientOnly.tsx ├── CloseIcon.tsx ├── Code.tsx ├── Collapse.tsx ├── ColorSwitcher.tsx ├── Container.tsx ├── Drawer.tsx ├── Footer.tsx ├── GlobalStyles.tsx ├── HamburgerIcon.tsx ├── HeroIllustation.tsx ├── Icon.tsx ├── Input.tsx ├── Link.tsx ├── Logo.tsx ├── MDXRichText.tsx ├── MailSentState.tsx ├── Navbar.tsx ├── NavigationDrawer.tsx ├── NewsletterModal.tsx ├── NotFoundIllustration.tsx ├── OverTitle.tsx ├── Overlay.tsx ├── Page.tsx ├── PricingCard.tsx ├── Quote.tsx ├── RichText.tsx ├── SectionTitle.tsx ├── Separator.tsx ├── Spacer.tsx ├── ThreeLayersCircle.tsx ├── WaveCta.tsx └── YoutubeVideo.tsx ├── contexts └── newsletter-modal.context.tsx ├── env.ts ├── hooks ├── useClipboard.ts ├── useEscKey.ts ├── useResizeObserver.ts └── useScrollPosition.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── 404.tsx ├── _app.tsx ├── _document.tsx ├── admin │ └── [[...tina]].tsx ├── api │ └── sendEmail.ts ├── blog │ ├── [slug].tsx │ └── index.tsx ├── contact.tsx ├── cookies-policy.tsx ├── features.tsx ├── index.tsx ├── pricing.tsx └── privacy-policy.tsx ├── posts ├── test-article-2.mdx ├── test-article-3.mdx ├── test-article-4.mdx ├── test-article-5.mdx ├── test-article-6.mdx └── test-article.mdx ├── public ├── demo-illustration-1.svg ├── demo-illustration-2.svg ├── demo-illustration-3.png ├── demo-illustration-4.png ├── demo-illustration-5.png ├── favicon.ico ├── grid-icons │ ├── asset-1.svg │ ├── asset-2.svg │ ├── asset-3.svg │ ├── asset-4.svg │ ├── asset-5.svg │ ├── asset-6.svg │ ├── asset-7.svg │ ├── asset-8.svg │ └── asset-9.svg ├── partners │ ├── logoipsum-logo-1.svg │ ├── logoipsum-logo-2.svg │ ├── logoipsum-logo-3.svg │ ├── logoipsum-logo-4.svg │ ├── logoipsum-logo-5.svg │ ├── logoipsum-logo-6.svg │ └── logoipsum-logo-7.svg ├── play-icon.svg ├── posts │ └── test-article │ │ ├── example-image-1.jpeg │ │ └── example-image-2.png ├── prism-theme.css ├── testimonials │ ├── author-photo-1.jpeg │ ├── author-photo-2.jpeg │ ├── author-photo-3.jpeg │ ├── company-logo-1.svg │ ├── company-logo-2.svg │ └── company-logo-3.svg └── vercel.svg ├── renovate.json ├── tsconfig.json ├── types.ts ├── utils ├── formatDate.ts ├── media.ts ├── postsFetcher.ts └── readTime.ts ├── views ├── ContactPage │ ├── FormSection.tsx │ └── InformationSection.tsx ├── HomePage │ ├── Cta.tsx │ ├── Features.tsx │ ├── FeaturesGallery.tsx │ ├── Hero.tsx │ ├── Partners.tsx │ ├── ScrollableBlogPosts.tsx │ └── Testimonials.tsx ├── PricingPage │ ├── FaqSection.tsx │ └── PricingTablesSection.tsx └── SingleArticlePage │ ├── Header.tsx │ ├── MetadataHead.tsx │ ├── OpenGraphHead.tsx │ ├── ShareWidget.tsx │ └── StructuredDataHead.tsx └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/.prettierrc -------------------------------------------------------------------------------- /.tina/__generated__/.gitignore: -------------------------------------------------------------------------------- 1 | db -------------------------------------------------------------------------------- /.tina/__generated__/_graphql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/.tina/__generated__/_graphql.json -------------------------------------------------------------------------------- /.tina/__generated__/_lookup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/.tina/__generated__/_lookup.json -------------------------------------------------------------------------------- /.tina/__generated__/_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/.tina/__generated__/_schema.json -------------------------------------------------------------------------------- /.tina/__generated__/frags.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/.tina/__generated__/frags.gql -------------------------------------------------------------------------------- /.tina/__generated__/queries.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/.tina/__generated__/queries.gql -------------------------------------------------------------------------------- /.tina/__generated__/schema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/.tina/__generated__/schema.gql -------------------------------------------------------------------------------- /.tina/__generated__/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/.tina/__generated__/types.ts -------------------------------------------------------------------------------- /.tina/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/.tina/schema.ts -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/README.md -------------------------------------------------------------------------------- /components/Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/Accordion.tsx -------------------------------------------------------------------------------- /components/ArticleCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/ArticleCard.tsx -------------------------------------------------------------------------------- /components/ArticleImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/ArticleImage.tsx -------------------------------------------------------------------------------- /components/AutofitGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/AutofitGrid.tsx -------------------------------------------------------------------------------- /components/BasicCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/BasicCard.tsx -------------------------------------------------------------------------------- /components/BasicSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/BasicSection.tsx -------------------------------------------------------------------------------- /components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/Button.tsx -------------------------------------------------------------------------------- /components/ButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/ButtonGroup.tsx -------------------------------------------------------------------------------- /components/ClientOnly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/ClientOnly.tsx -------------------------------------------------------------------------------- /components/CloseIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/CloseIcon.tsx -------------------------------------------------------------------------------- /components/Code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/Code.tsx -------------------------------------------------------------------------------- /components/Collapse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/Collapse.tsx -------------------------------------------------------------------------------- /components/ColorSwitcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/ColorSwitcher.tsx -------------------------------------------------------------------------------- /components/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/Container.tsx -------------------------------------------------------------------------------- /components/Drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/Drawer.tsx -------------------------------------------------------------------------------- /components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/Footer.tsx -------------------------------------------------------------------------------- /components/GlobalStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/GlobalStyles.tsx -------------------------------------------------------------------------------- /components/HamburgerIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/HamburgerIcon.tsx -------------------------------------------------------------------------------- /components/HeroIllustation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/HeroIllustation.tsx -------------------------------------------------------------------------------- /components/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/Icon.tsx -------------------------------------------------------------------------------- /components/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/Input.tsx -------------------------------------------------------------------------------- /components/Link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/Link.tsx -------------------------------------------------------------------------------- /components/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/Logo.tsx -------------------------------------------------------------------------------- /components/MDXRichText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/MDXRichText.tsx -------------------------------------------------------------------------------- /components/MailSentState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/MailSentState.tsx -------------------------------------------------------------------------------- /components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/Navbar.tsx -------------------------------------------------------------------------------- /components/NavigationDrawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/NavigationDrawer.tsx -------------------------------------------------------------------------------- /components/NewsletterModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/NewsletterModal.tsx -------------------------------------------------------------------------------- /components/NotFoundIllustration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/NotFoundIllustration.tsx -------------------------------------------------------------------------------- /components/OverTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/OverTitle.tsx -------------------------------------------------------------------------------- /components/Overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/Overlay.tsx -------------------------------------------------------------------------------- /components/Page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/Page.tsx -------------------------------------------------------------------------------- /components/PricingCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/PricingCard.tsx -------------------------------------------------------------------------------- /components/Quote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/Quote.tsx -------------------------------------------------------------------------------- /components/RichText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/RichText.tsx -------------------------------------------------------------------------------- /components/SectionTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/SectionTitle.tsx -------------------------------------------------------------------------------- /components/Separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/Separator.tsx -------------------------------------------------------------------------------- /components/Spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/Spacer.tsx -------------------------------------------------------------------------------- /components/ThreeLayersCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/ThreeLayersCircle.tsx -------------------------------------------------------------------------------- /components/WaveCta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/WaveCta.tsx -------------------------------------------------------------------------------- /components/YoutubeVideo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/components/YoutubeVideo.tsx -------------------------------------------------------------------------------- /contexts/newsletter-modal.context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/contexts/newsletter-modal.context.tsx -------------------------------------------------------------------------------- /env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/env.ts -------------------------------------------------------------------------------- /hooks/useClipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/hooks/useClipboard.ts -------------------------------------------------------------------------------- /hooks/useEscKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/hooks/useEscKey.ts -------------------------------------------------------------------------------- /hooks/useResizeObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/hooks/useResizeObserver.ts -------------------------------------------------------------------------------- /hooks/useScrollPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/hooks/useScrollPosition.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/package.json -------------------------------------------------------------------------------- /pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/pages/404.tsx -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/admin/[[...tina]].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/pages/admin/[[...tina]].tsx -------------------------------------------------------------------------------- /pages/api/sendEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/pages/api/sendEmail.ts -------------------------------------------------------------------------------- /pages/blog/[slug].tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/pages/blog/[slug].tsx -------------------------------------------------------------------------------- /pages/blog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/pages/blog/index.tsx -------------------------------------------------------------------------------- /pages/contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/pages/contact.tsx -------------------------------------------------------------------------------- /pages/cookies-policy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/pages/cookies-policy.tsx -------------------------------------------------------------------------------- /pages/features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/pages/features.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/pages/pricing.tsx -------------------------------------------------------------------------------- /pages/privacy-policy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/pages/privacy-policy.tsx -------------------------------------------------------------------------------- /posts/test-article-2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/posts/test-article-2.mdx -------------------------------------------------------------------------------- /posts/test-article-3.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/posts/test-article-3.mdx -------------------------------------------------------------------------------- /posts/test-article-4.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/posts/test-article-4.mdx -------------------------------------------------------------------------------- /posts/test-article-5.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/posts/test-article-5.mdx -------------------------------------------------------------------------------- /posts/test-article-6.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/posts/test-article-6.mdx -------------------------------------------------------------------------------- /posts/test-article.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/posts/test-article.mdx -------------------------------------------------------------------------------- /public/demo-illustration-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/demo-illustration-1.svg -------------------------------------------------------------------------------- /public/demo-illustration-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/demo-illustration-2.svg -------------------------------------------------------------------------------- /public/demo-illustration-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/demo-illustration-3.png -------------------------------------------------------------------------------- /public/demo-illustration-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/demo-illustration-4.png -------------------------------------------------------------------------------- /public/demo-illustration-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/demo-illustration-5.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/grid-icons/asset-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/grid-icons/asset-1.svg -------------------------------------------------------------------------------- /public/grid-icons/asset-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/grid-icons/asset-2.svg -------------------------------------------------------------------------------- /public/grid-icons/asset-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/grid-icons/asset-3.svg -------------------------------------------------------------------------------- /public/grid-icons/asset-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/grid-icons/asset-4.svg -------------------------------------------------------------------------------- /public/grid-icons/asset-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/grid-icons/asset-5.svg -------------------------------------------------------------------------------- /public/grid-icons/asset-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/grid-icons/asset-6.svg -------------------------------------------------------------------------------- /public/grid-icons/asset-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/grid-icons/asset-7.svg -------------------------------------------------------------------------------- /public/grid-icons/asset-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/grid-icons/asset-8.svg -------------------------------------------------------------------------------- /public/grid-icons/asset-9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/grid-icons/asset-9.svg -------------------------------------------------------------------------------- /public/partners/logoipsum-logo-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/partners/logoipsum-logo-1.svg -------------------------------------------------------------------------------- /public/partners/logoipsum-logo-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/partners/logoipsum-logo-2.svg -------------------------------------------------------------------------------- /public/partners/logoipsum-logo-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/partners/logoipsum-logo-3.svg -------------------------------------------------------------------------------- /public/partners/logoipsum-logo-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/partners/logoipsum-logo-4.svg -------------------------------------------------------------------------------- /public/partners/logoipsum-logo-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/partners/logoipsum-logo-5.svg -------------------------------------------------------------------------------- /public/partners/logoipsum-logo-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/partners/logoipsum-logo-6.svg -------------------------------------------------------------------------------- /public/partners/logoipsum-logo-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/partners/logoipsum-logo-7.svg -------------------------------------------------------------------------------- /public/play-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/play-icon.svg -------------------------------------------------------------------------------- /public/posts/test-article/example-image-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/posts/test-article/example-image-1.jpeg -------------------------------------------------------------------------------- /public/posts/test-article/example-image-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/posts/test-article/example-image-2.png -------------------------------------------------------------------------------- /public/prism-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/prism-theme.css -------------------------------------------------------------------------------- /public/testimonials/author-photo-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/testimonials/author-photo-1.jpeg -------------------------------------------------------------------------------- /public/testimonials/author-photo-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/testimonials/author-photo-2.jpeg -------------------------------------------------------------------------------- /public/testimonials/author-photo-3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/testimonials/author-photo-3.jpeg -------------------------------------------------------------------------------- /public/testimonials/company-logo-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/testimonials/company-logo-1.svg -------------------------------------------------------------------------------- /public/testimonials/company-logo-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/testimonials/company-logo-2.svg -------------------------------------------------------------------------------- /public/testimonials/company-logo-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/testimonials/company-logo-3.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/renovate.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/types.ts -------------------------------------------------------------------------------- /utils/formatDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/utils/formatDate.ts -------------------------------------------------------------------------------- /utils/media.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/utils/media.ts -------------------------------------------------------------------------------- /utils/postsFetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/utils/postsFetcher.ts -------------------------------------------------------------------------------- /utils/readTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/utils/readTime.ts -------------------------------------------------------------------------------- /views/ContactPage/FormSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/views/ContactPage/FormSection.tsx -------------------------------------------------------------------------------- /views/ContactPage/InformationSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/views/ContactPage/InformationSection.tsx -------------------------------------------------------------------------------- /views/HomePage/Cta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/views/HomePage/Cta.tsx -------------------------------------------------------------------------------- /views/HomePage/Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/views/HomePage/Features.tsx -------------------------------------------------------------------------------- /views/HomePage/FeaturesGallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/views/HomePage/FeaturesGallery.tsx -------------------------------------------------------------------------------- /views/HomePage/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/views/HomePage/Hero.tsx -------------------------------------------------------------------------------- /views/HomePage/Partners.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/views/HomePage/Partners.tsx -------------------------------------------------------------------------------- /views/HomePage/ScrollableBlogPosts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/views/HomePage/ScrollableBlogPosts.tsx -------------------------------------------------------------------------------- /views/HomePage/Testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/views/HomePage/Testimonials.tsx -------------------------------------------------------------------------------- /views/PricingPage/FaqSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/views/PricingPage/FaqSection.tsx -------------------------------------------------------------------------------- /views/PricingPage/PricingTablesSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/views/PricingPage/PricingTablesSection.tsx -------------------------------------------------------------------------------- /views/SingleArticlePage/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/views/SingleArticlePage/Header.tsx -------------------------------------------------------------------------------- /views/SingleArticlePage/MetadataHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/views/SingleArticlePage/MetadataHead.tsx -------------------------------------------------------------------------------- /views/SingleArticlePage/OpenGraphHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/views/SingleArticlePage/OpenGraphHead.tsx -------------------------------------------------------------------------------- /views/SingleArticlePage/ShareWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/views/SingleArticlePage/ShareWidget.tsx -------------------------------------------------------------------------------- /views/SingleArticlePage/StructuredDataHead.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/views/SingleArticlePage/StructuredDataHead.tsx -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tech4xstar/next-saas-starter/HEAD/yarn.lock --------------------------------------------------------------------------------