├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── favicon.ico ├── globals.css ├── layout.tsx ├── opengraph-image.png ├── page.tsx └── providers.tsx ├── components.json ├── components ├── faq.tsx ├── footer.tsx ├── hero.tsx ├── navbar.tsx ├── partners.tsx ├── pricing.tsx ├── stats.tsx ├── testimonials.tsx ├── theme-switcher.tsx └── ui │ ├── accordion.tsx │ ├── button.tsx │ ├── card.tsx │ ├── dialog.tsx │ ├── dropdown-menu.tsx │ ├── navigation-menu.tsx │ ├── separator.tsx │ └── tooltip.tsx ├── lib └── utils.ts ├── license.txt ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public └── preview.png └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/README.md -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/app/opengraph-image.png -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/app/providers.tsx -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/components.json -------------------------------------------------------------------------------- /components/faq.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/components/faq.tsx -------------------------------------------------------------------------------- /components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/components/footer.tsx -------------------------------------------------------------------------------- /components/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/components/hero.tsx -------------------------------------------------------------------------------- /components/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/components/navbar.tsx -------------------------------------------------------------------------------- /components/partners.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/components/partners.tsx -------------------------------------------------------------------------------- /components/pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/components/pricing.tsx -------------------------------------------------------------------------------- /components/stats.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/components/stats.tsx -------------------------------------------------------------------------------- /components/testimonials.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/components/testimonials.tsx -------------------------------------------------------------------------------- /components/theme-switcher.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/components/theme-switcher.tsx -------------------------------------------------------------------------------- /components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/components/ui/accordion.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /components/ui/navigation-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/components/ui/navigation-menu.tsx -------------------------------------------------------------------------------- /components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/components/ui/separator.tsx -------------------------------------------------------------------------------- /components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/license.txt -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/public/preview.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalochale/saas-landing-template/HEAD/tsconfig.json --------------------------------------------------------------------------------