Files
supanextail/components/CardsLanding.js
2021-06-26 16:52:27 +02:00

46 lines
1.4 KiB
JavaScript
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/cardAuth.svg";
import cardFee from "public/cardFee.svg";
import cardPage from "public/cardPage.svg";
import cardResponsive from "public/cardResponsive.svg";
import cardServer from "public/cardServer.svg";
import cardStripe from "public/cardStripe.svg";
import cardTheme from "public/cardTheme.svg";
const CardsLanding = () => {
return (
<div className='flex flex-wrap justify-center mt-10'>
<CardLanding
image={cardPage}
text='7 pages fully designed and easily customizable'
/>
<CardLanding
image={cardServer}
text='Integrated backend already setup with Next.js API Routes'
/>
<CardLanding
image={cardAuth}
text='Auth and user management with Supabase'
/>
<CardLanding
image={cardResponsive}
text='Mobile ready, fully responsive and customizable with Tailwind CSS'
/>
<CardLanding
image={cardTheme}
text='Custom themes available and easily switch to dark mode'
/>
<CardLanding
image={cardStripe}
text='Stripe integration. Fully functional subscription system'
/>
<CardLanding
image={cardFee}
text='One-time fee. No subscription, youll have access to all the updates'
/>
</div>
);
};
export default CardsLanding;