generated from scaffold-eth/scaffold-eth-2
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
34 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import Image from "next/image"; | ||
import Link from "next/link"; | ||
|
||
export const HomepageHero = () => ( | ||
<div className="container max-w-[90%] lg:max-w-7xl m-auto py-10 lg:py-16 xl:pl-18 lg:pl-8 flex flex-col-reverse lg:flex-row items-center justify-between gap-5 lg:gap-0"> | ||
<div className="space-y-2 lg:max-w-[65%] flex flex-col items-center lg:items-start"> | ||
<div className="relative"> | ||
<h2 className="text-3xl md:text-4xl lg:text-6xl lg:leading-[1.2] text-center lg:text-left font-ppEditorial"> | ||
Funding meaningful projects <br /> across the ecosystem | ||
</h2> | ||
<Image className="absolute -top-3 -right-7" src="/assets/sparkle.png" alt="sparkle" width={32} height={32} /> | ||
</div> | ||
<div className="text-center font-spaceMono px-1 max-w-lg lg:max-w-none lg:w-4/5 lg:px-0 lg:text-left space-y-5"> | ||
<p className="m-0 text-xs md:text-sm lg:text-lg"> | ||
Our micro grants are one of many ways BuidlGuidl funds development and contribute to Ethereum. Did you just | ||
finished SRE or completed one of our batches? This could be your next step in BuidlGuidl’s journey. | ||
</p> | ||
<Link | ||
href="/submit-grant" | ||
className="btn btn-primary btn-md border-1 border-black rounded-2xl px-14 font-medium shadow-none" | ||
> | ||
Learn More | ||
</Link> | ||
</div> | ||
</div> | ||
<div className="flex flex-col items-center"> | ||
<div className="max-w-md lg:max-w-none"> | ||
<Image src="/assets/bg-universe.png" alt="developers list" width={500} height={500} /> | ||
</div> | ||
</div> | ||
</div> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters