├── .babelrc ├── .eslintignore ├── .eslintrc ├── .github └── FUNDING.yml ├── .gitignore ├── .husky └── pre-commit ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── lint-staged.config.js ├── netlify.toml ├── next-env.d.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── apple-touch-icon.png ├── assets │ └── images │ │ ├── arcjet-dark.svg │ │ ├── arcjet-light.svg │ │ ├── clerk-logo-dark.png │ │ ├── clerk-logo-white.png │ │ ├── codecov-dark.svg │ │ ├── codecov-white.svg │ │ ├── coderabbit-logo-dark.svg │ │ ├── coderabbit-logo-light.svg │ │ ├── crowdin-dark.png │ │ ├── crowdin-white.png │ │ ├── feature.svg │ │ ├── feature2.svg │ │ ├── feature3.svg │ │ ├── nextjs-boilerplate-saas.png │ │ ├── nextjs-landing-page-banner.png │ │ ├── nextjs-landing-page-screenshot.png │ │ ├── sentry-dark.png │ │ └── sentry-white.png ├── favicon-16x16.png ├── favicon-32x32.png └── favicon.ico ├── src ├── background │ └── Background.tsx ├── button │ └── Button.tsx ├── cta │ └── CTABanner.tsx ├── feature │ └── VerticalFeatureRow.tsx ├── footer │ ├── CenteredFooter.tsx │ ├── FooterCopyright.tsx │ └── FooterIconList.tsx ├── hero │ └── HeroOneButton.tsx ├── layout │ ├── Meta.tsx │ └── Section.tsx ├── navigation │ └── NavbarTwoColumns.tsx ├── pages │ ├── _app.tsx │ ├── _document.tsx │ └── index.tsx ├── styles │ └── global.css ├── templates │ ├── Banner.tsx │ ├── Base.tsx │ ├── Footer.tsx │ ├── Hero.tsx │ ├── Logo.tsx │ ├── Sponsors.tsx │ └── VerticalFeatures.tsx └── utils │ └── AppConfig.ts ├── tailwind.config.js └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | out 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/README.md -------------------------------------------------------------------------------- /lint-staged.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/lint-staged.config.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/netlify.toml -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/assets/images/arcjet-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/assets/images/arcjet-dark.svg -------------------------------------------------------------------------------- /public/assets/images/arcjet-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/assets/images/arcjet-light.svg -------------------------------------------------------------------------------- /public/assets/images/clerk-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/assets/images/clerk-logo-dark.png -------------------------------------------------------------------------------- /public/assets/images/clerk-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/assets/images/clerk-logo-white.png -------------------------------------------------------------------------------- /public/assets/images/codecov-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/assets/images/codecov-dark.svg -------------------------------------------------------------------------------- /public/assets/images/codecov-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/assets/images/codecov-white.svg -------------------------------------------------------------------------------- /public/assets/images/coderabbit-logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/assets/images/coderabbit-logo-dark.svg -------------------------------------------------------------------------------- /public/assets/images/coderabbit-logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/assets/images/coderabbit-logo-light.svg -------------------------------------------------------------------------------- /public/assets/images/crowdin-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/assets/images/crowdin-dark.png -------------------------------------------------------------------------------- /public/assets/images/crowdin-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/assets/images/crowdin-white.png -------------------------------------------------------------------------------- /public/assets/images/feature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/assets/images/feature.svg -------------------------------------------------------------------------------- /public/assets/images/feature2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/assets/images/feature2.svg -------------------------------------------------------------------------------- /public/assets/images/feature3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/assets/images/feature3.svg -------------------------------------------------------------------------------- /public/assets/images/nextjs-boilerplate-saas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/assets/images/nextjs-boilerplate-saas.png -------------------------------------------------------------------------------- /public/assets/images/nextjs-landing-page-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/assets/images/nextjs-landing-page-banner.png -------------------------------------------------------------------------------- /public/assets/images/nextjs-landing-page-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/assets/images/nextjs-landing-page-screenshot.png -------------------------------------------------------------------------------- /public/assets/images/sentry-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/assets/images/sentry-dark.png -------------------------------------------------------------------------------- /public/assets/images/sentry-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/assets/images/sentry-white.png -------------------------------------------------------------------------------- /public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/background/Background.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/background/Background.tsx -------------------------------------------------------------------------------- /src/button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/button/Button.tsx -------------------------------------------------------------------------------- /src/cta/CTABanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/cta/CTABanner.tsx -------------------------------------------------------------------------------- /src/feature/VerticalFeatureRow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/feature/VerticalFeatureRow.tsx -------------------------------------------------------------------------------- /src/footer/CenteredFooter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/footer/CenteredFooter.tsx -------------------------------------------------------------------------------- /src/footer/FooterCopyright.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/footer/FooterCopyright.tsx -------------------------------------------------------------------------------- /src/footer/FooterIconList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/footer/FooterIconList.tsx -------------------------------------------------------------------------------- /src/hero/HeroOneButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/hero/HeroOneButton.tsx -------------------------------------------------------------------------------- /src/layout/Meta.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/layout/Meta.tsx -------------------------------------------------------------------------------- /src/layout/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/layout/Section.tsx -------------------------------------------------------------------------------- /src/navigation/NavbarTwoColumns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/navigation/NavbarTwoColumns.tsx -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/pages/_document.tsx -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/templates/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/templates/Banner.tsx -------------------------------------------------------------------------------- /src/templates/Base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/templates/Base.tsx -------------------------------------------------------------------------------- /src/templates/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/templates/Footer.tsx -------------------------------------------------------------------------------- /src/templates/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/templates/Hero.tsx -------------------------------------------------------------------------------- /src/templates/Logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/templates/Logo.tsx -------------------------------------------------------------------------------- /src/templates/Sponsors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/templates/Sponsors.tsx -------------------------------------------------------------------------------- /src/templates/VerticalFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/templates/VerticalFeatures.tsx -------------------------------------------------------------------------------- /src/utils/AppConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/src/utils/AppConfig.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ixartz/Next-JS-Landing-Page-Starter-Template/HEAD/tsconfig.json --------------------------------------------------------------------------------