Skip to content

Commit

Permalink
Merge pull request #292 from ChibuzoEkwue/feat/159-create-hero-sectio…
Browse files Browse the repository at this point in the history
…n-waitlist-page

hero section for the waitlist page
  • Loading branch information
shalomtaiwo authored Jul 22, 2024
2 parents 5d14e73 + 5db5b5e commit ccf0ab0
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions app/components/waitlist/HeroSection.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
const HeroSection = () => {
return (
<section className="h-[95vh] w-full bg-white lg:bg-neutral-50">
<div className="container mx-auto flex h-full w-full flex-col items-center justify-center gap-[20px] px-2">
<div className="w-[322px] text-center font-['Inter'] text-[32px] font-bold text-neutral-600 lg:w-[623px] lg:text-6xl">
Join the waitlist and get early access!
</div>
<div className="inline-flex h-16 w-[322px] items-center justify-center pb-[7px] lg:h-14 lg:w-[584px]">
<div className="w-[322px] text-center font-['Inter'] text-base font-normal text-neutral-600 lg:w-[584px] lg:text-xl lg:leading-7">
Transform your remote work meetings into fun and engaging sessions
with our innovative game-based platform.{" "}
</div>
</div>
<div className="inline-flex h-[54px] w-[322px] items-center justify-center lg:h-7 lg:w-[584px]">
<div className="w-[322px] text-center lg:w-[584px]">
<span className="font-['Inter'] text-xl font-semibold leading-7 text-neutral-600">
Be a part of the first 2300 users for a{" "}
</span>
<span className="font-['Inter'] text-xl font-semibold leading-7 text-orange-500">
10% discount
</span>
</div>
</div>
<div className="inline-flex h-11 items-center justify-center gap-2.5 rounded-md bg-stone-900 px-8">
<button className="font-['Inter'] text-sm font-bold leading-normal text-slate-50">
Join the Waitist
</button>
</div>
</div>
</section>
);
};

export default HeroSection;

0 comments on commit ccf0ab0

Please sign in to comment.