This commit is contained in:
MacRimi
2025-02-13 23:04:40 +01:00
parent a9a89b5b46
commit 990b2bf7de
137 changed files with 7536 additions and 219 deletions

20
web2/app/page.tsx Normal file
View File

@@ -0,0 +1,20 @@
"use client";
import Hero from "@/components/hero"
import Resources from "@/components/resources"
import SupportProject from "@/components/support-project"
import Footer from "@/components/footer"
export default function Home() {
return (
<div className="min-h-screen bg-gradient-to-b from-gray-900 to-gray-800 text-white pt-16">
{" "}
{/* Added pt-16 for navbar space */}
<Hero />
<Resources />
<SupportProject />
<Footer />
</div>
)
}