mirror of
https://github.com/fergalmoran/supanextail.git
synced 2025-12-22 09:17:54 +00:00
61 lines
2.0 KiB
TypeScript
61 lines
2.0 KiB
TypeScript
import CardLanding from 'components/UI/CardLanding';
|
||
import cardAuth from 'public/landing/auth.svg';
|
||
import cardFee from 'public/landing/lifetime.svg';
|
||
import cardPage from 'public/landing/page.svg';
|
||
import cardResponsive from 'public/landing/responsive.svg';
|
||
import cardServer from 'public/landing/backend.svg';
|
||
import cardStripe from 'public/landing/stripe.svg';
|
||
import cardTheme from 'public/landing/theme.svg';
|
||
|
||
const CardsLanding = (): JSX.Element => (
|
||
<div className="mt-14">
|
||
<h2 className="text-4xl font-bold tracking-wide text-center uppercase">
|
||
We've got you covered
|
||
</h2>
|
||
<p className="max-w-md m-auto text-center">
|
||
Don’t waste your time and reinvent the wheel, we have provided you with a
|
||
maximum of features so that you only have one goal, to make your SaaS a
|
||
reality.
|
||
</p>
|
||
<div className="flex flex-wrap justify-center mt-10">
|
||
<CardLanding
|
||
image={cardPage as string}
|
||
text="7 pages fully designed and easily customizable"
|
||
title="Templates"
|
||
/>
|
||
<CardLanding
|
||
image={cardServer as string}
|
||
text="Integrated backend already setup with Next.js API Routes"
|
||
title="Backend"
|
||
/>
|
||
<CardLanding
|
||
image={cardAuth as string}
|
||
text="Auth and user management with Supabase"
|
||
title="Auth"
|
||
/>
|
||
<CardLanding
|
||
image={cardResponsive as string}
|
||
text="Mobile ready, fully responsive and customizable with Tailwind CSS"
|
||
title="Responsive"
|
||
/>
|
||
<CardLanding
|
||
image={cardTheme as string}
|
||
text="Custom themes available and easily switch to dark mode"
|
||
title="Themes"
|
||
/>
|
||
<CardLanding
|
||
image={cardStripe as string}
|
||
text="Stripe integration. Fully functional subscription system"
|
||
title="Payment"
|
||
/>
|
||
<CardLanding
|
||
image={cardFee as string}
|
||
text="One-time fee. No subscription, you’ll have access to all the updates"
|
||
title="Lifetime access"
|
||
/>
|
||
</div>
|
||
</div>
|
||
);
|
||
|
||
export default CardsLanding;
|