mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-07-03 06:26:52 +00:00
Update page.tsx
This commit is contained in:
parent
7ba808f759
commit
8126a269d6
@ -1,13 +1,13 @@
|
|||||||
import Hero from "@/components/hero"
|
import dynamic from "next/dynamic"
|
||||||
import Resources from "@/components/resources"
|
|
||||||
import SupportProject from "@/components/support-project"
|
const Hero = dynamic(() => import("@/components/hero"), { ssr: false })
|
||||||
import Footer from "@/components/footer"
|
const Resources = dynamic(() => import("@/components/resources"), { ssr: false })
|
||||||
|
const SupportProject = dynamic(() => import("@/components/support-project"), { ssr: false })
|
||||||
|
const Footer = dynamic(() => import("@/components/footer"), { ssr: false })
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
<div className="min-h-screen bg-gradient-to-b from-gray-900 to-gray-800 text-white pt-16">
|
<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 />
|
<Hero />
|
||||||
<Resources />
|
<Resources />
|
||||||
<SupportProject />
|
<SupportProject />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user