diff --git a/packages/nextjs/app/_components/HomepageHero.tsx b/packages/nextjs/app/_components/HomepageHero.tsx new file mode 100644 index 0000000..f90c7b0 --- /dev/null +++ b/packages/nextjs/app/_components/HomepageHero.tsx @@ -0,0 +1,32 @@ +import Image from "next/image"; +import Link from "next/link"; + +export const HomepageHero = () => ( +
+
+
+

+ Funding meaningful projects
across the ecosystem +

+ sparkle +
+
+

+ 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. +

+ + Learn More + +
+
+
+
+ developers list +
+
+
+); diff --git a/packages/nextjs/app/page.tsx b/packages/nextjs/app/page.tsx index 2d7748f..4a3cab9 100644 --- a/packages/nextjs/app/page.tsx +++ b/packages/nextjs/app/page.tsx @@ -1,47 +1,11 @@ -import Image from "next/image"; -import Link from "next/link"; import { CompletedGrants } from "./_components/CompletedGrants"; import { GrantsStats } from "./_components/GrantsStats"; +import { HomepageHero } from "./_components/HomepageHero"; const Home = () => { return ( <> - {/* Hero section */} -
-
-
-
-

- Funding meaningful projects
across the ecosystem -

- sparkle -
-
-

- 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. -

- - Learn More - -
-
-
-
- developers list -
-
-
-
+