Add mailing list feature

This commit is contained in:
Michael
2021-06-29 14:54:14 +02:00
parent e9961c5c1b
commit 4d50d6d2be
4 changed files with 124 additions and 5 deletions

View File

@@ -1,4 +1,5 @@
import CardsLanding from "components/CardsLanding";
import MailingList from "./MailingList";
const Landing = () => {
return (
@@ -16,11 +17,9 @@ const Landing = () => {
</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'>
<div className='max-w-3xl m-auto my-10'>
<h2 className='text-3xl font-semibold font-title'>Available soon</h2>
<p className='text-lg max-w-lg text-center m-auto leading-9'>
You will save{" "}
<span className='text-accent text-2xl font-bold underline'>
weeks
@@ -29,6 +28,8 @@ const Landing = () => {
website is built with it!
</p>
</div>
<hr />
<MailingList />
</div>
</div>
);