Launch your SaaS
SaaSDay provides all the building blocks for launching your SaaS (Software as a Service) application.
SaaSDay provides complete subscription support and lifecycle with Stripe or LemonSqueezy via Webhooks.
Default landing page is provided as below:
app/(marketing)/page.tsx
import {HeroLanding} from "@/components/sections/hero-landing";
import {Powered} from "@/components/sections/powered";
import {PreviewLanding} from "@/components/sections/preview-landing";
import {Testimonials} from "@/components/sections/testimonials";
import PricingPage from "@/app/(marketing)/pricing/page";
import MarketingFeatures from "@/components/shared/marketing-features";
import MeetTheDeveloper from "@/components/shared/meet-the-developer";
import TestimonialSingle from "@/components/shared/testimonial-single";
export default async function IndexPage() {
return (
<>
<HeroLanding/>
<PreviewLanding/>
<Powered/>
<MarketingFeatures/>
<TestimonialSingle/>
<Features/>
<PricingPage/>
<Testimonials/>
</>
);
}
Some additional components are also provided to enrich the landing page:
.....
<Showcase/>
<BentoGrid/>
<InfoLanding data={infos[0]} reverse={true}/>
<InfoLanding data={infos[1]} reverse={false}/>
TODO: Add screenshot.
This is a complete landing page with all the sections like Hero, Preview, Powered, Marketing Features, Testimonials, Pricing, and Testimonials. This provides you strong foundation to launch your SaaS and convince your customers to sign-up and buy your product.
Proceed to configure the subscription on LemonSqueezy or Stripe and integrate the subscription components in your app. Please see the Pricing Subscription component for more details.