ProxMenux/web/app/page.tsx

17 lines
418 B
TypeScript
Raw Normal View History

2025-02-18 22:20:33 +01:00
import Hero from "@/components/hero"
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">
<Hero />
<Resources />
<SupportProject />
<Footer />
</div>
)
2025-02-18 22:03:33 +01:00
}