2025-03-07 18:12:27 +01:00
|
|
|
import Hero2 from "@/components/hero2"
|
2025-02-18 22:20:33 +01:00
|
|
|
import Resources from "@/components/resources"
|
|
|
|
import SupportProject from "@/components/support-project"
|
|
|
|
import Footer from "@/components/footer"
|
2025-02-18 19:09:28 +01:00
|
|
|
|
2025-02-18 23:22:28 +01:00
|
|
|
|
2025-02-13 17:28:49 +01:00
|
|
|
export default function Home() {
|
|
|
|
return (
|
|
|
|
<div className="min-h-screen bg-gradient-to-b from-gray-900 to-gray-800 text-white pt-16">
|
2025-03-07 18:12:27 +01:00
|
|
|
<Hero2 />
|
2025-02-13 17:28:49 +01:00
|
|
|
<Resources />
|
|
|
|
<SupportProject />
|
|
|
|
<Footer />
|
|
|
|
</div>
|
|
|
|
)
|
2025-02-18 22:03:33 +01:00
|
|
|
}
|