mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 04:06:54 +00:00
19 lines
473 B
TypeScript
19 lines
473 B
TypeScript
|
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>
|
||
|
)
|
||
|
}
|
||
|
|