Files
supanextail/components/CardsLanding.tsx
2022-01-15 17:10:45 +01:00

61 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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">
Dont 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, youll have access to all the updates"
title="Lifetime access"
/>
</div>
</div>
);
export default CardsLanding;