import Image from 'next/image'; import Link from 'next/link'; import { ChevronRight } from 'lucide-react'; import { Button } from '@kit/ui/button'; import { Heading } from '@kit/ui/heading'; import { withI18n } from '~/lib/i18n/with-i18n'; function Home() { return (
The leading SaaS Starter Kit for ambitious developers The SaaS Solution for developers and founders
Here you can write a short description of your SaaS This subheading is usually laid out on multiple lines Impress your customers, straight to the point.
Free plan. No credit card required.
{`App
A modern, scalable, and secure SaaS Starter Kit
The best tool in the space Unbeatable Features and Benefits for Your SaaS Business
Authentication Secure and Easy-to-Use Authentication for Your SaaS Website and API
Our authentication system is built on top of the industry-leading PaaS such as Supabase and Firebase. It is secure, easy-to-use, and fully customizable. It supports email/password, social logins, and more.
{'Sign
{'Dashboard'}
Dashboard A fantastic dashboard to manage your SaaS business
Our dashboard offers an overview of your SaaS business. It shows at a glance all you need to know about your business. It is fully customizable and extendable.
Get started for free. No credit card required. Cancel anytime.
Ready to take your SaaS business to the next level? Get started on our free plan and upgrade when you are ready.
); } export default withI18n(Home); function HeroTitle({ children }: React.PropsWithChildren) { return (

{children}

); } function Pill(props: React.PropsWithChildren) { return (

{props.children}

); } function FeatureShowcaseContainer(props: React.PropsWithChildren) { return (
{props.children}
); } function LeftFeatureContainer(props: React.PropsWithChildren) { return (
{props.children}
); } function RightFeatureContainer(props: React.PropsWithChildren) { return
{props.children}
; } function MainCallToActionButton() { return ( ); }