Files
supanextail/components/Landing.js
2021-06-22 21:59:53 +02:00

38 lines
1.2 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 CardsLanding from "components/CardsLanding";
const Landing = () => {
return (
<div className='mt-36 mb-20 text-base-content max-w-5xl'>
<div className='max-w-2xl m-auto'>
<h2 className='text-5xl md:text-5xl font-bold font-title'>
SupaNexTail <span className='text-accent'>Boilerplate</span>
</h2>
<hr className='my-5' />
<p className='text-xl max-w-lg text-center m-auto'>
Dont waste your time and reinvent the wheel, setup your website in
<span className='text-accent text-2xl font-bold'> minutes</span>, not
days.
</p>
</div>
<CardsLanding />
<div>
<div className='max-w-2xl m-auto mt-10'>
<h2 className='text-5xl md:text-5xl font-bold font-title'>
Available soon
</h2>
<p className='text-xl max-w-lg text-center m-auto leading-9'>
You will save{" "}
<span className='text-accent text-2xl font-bold underline'>
weeks
</span>{" "}
of work on your first integration. Want to check a demo? This
website is built with it!
</p>
</div>
</div>
</div>
);
};
export default Landing;