add gitignore

This commit is contained in:
2025-06-11 11:29:13 +02:00
parent b3dd757b1c
commit 7b8c831970
47 changed files with 679 additions and 75 deletions

View File

@@ -197,6 +197,30 @@ function DarkBentoSection() {
)
}
function CTA() {
return (
<div className="bg-white ">
<div className="px-6 pt-24 pb-32 sm:px-6 lg:px-8 ">
<div className="mx-auto max-w-3xl text-center">
<h2 className="text-5xl font-semibold tracking-tight text-balance text-gray-900 sm:text-5xl">
Empower a Generation. Join the Movement.
</h2>
<p className="mx-auto mt-6 max-w-xl text-lg/8 text-pretty text-gray-600">
Help build a future where every young person can thrive through holistic education, cultural connection, and community-led innovation.
</p>
<div className="mt-10 flex items-center justify-center gap-x-6">
<Button href="/get-involved">Get Involved</Button>
<Button variant="secondary" href="/contact">
Contact Us
</Button>
</div>
</div>
</div>
</div>
)
}
export default function Home() {
return (
@@ -213,6 +237,7 @@ export default function Home() {
<Portfolio />
<IndabaOs />
<FeaturedTestimonial />
<CTA />
</main>
<Footer />
</div>