Components
A simple How it Works section with a minimalistic design touch. Nothing fancy, but get's the job done through simplicity.
Loading preview...
import { FeatureSection } from "@/components/ui/saa-s-feature-section";
export default function Demo() {
return (
<main className="bg-[#F0F0F0] w-screen h-screen">
<FeatureSection
caption="How it Works_"
headline="We make it super easy."
subheadline="Working with us is like having an activation growth taskforce of a Data Scientist, PLG Advisor, & Behavioral Designer in-house. Always ready to go."
features={[
{
title: '2 Week Sprint Blueprint',
description: 'The foundational rebirth of your Business. Strategize, Audit, Align, and Prioritize the Taskforce Efforts.',
image: <></>,
},
{
title: 'Hypothesis. Placed Bet.',
description: 'Behavior-Driven Redesigns that align JTBD with the business objective = uplift.',
image: <></>,
},
{
title: 'Growth Roadmap Blueprint',
description: 'One Centralized Growth Board with Prioritized A/B tests to be launched.',
image: <></>,
},
]}
stats={['+80 redesigns', '+50 UX teardowns', '14 Days Trial']}
/>
</main>
);
}