Update app/page.tsx
This commit is contained in:
parent
58b136fa84
commit
1eec9872e1
|
|
@ -0,0 +1,29 @@
|
||||||
|
import { Container } from "@/components/container";
|
||||||
|
import { Hero } from "@/components/hero";
|
||||||
|
import { Background } from "@/components/background";
|
||||||
|
import { Features } from "@/components/features";
|
||||||
|
import { Projects } from "@/components/projects";
|
||||||
|
import { CTA } from "@/components/cta";
|
||||||
|
import { Footer } from "@/components/footer";
|
||||||
|
|
||||||
|
export default function Home() {
|
||||||
|
return (
|
||||||
|
<div className="relative bg-[#f4f1ea]">
|
||||||
|
<div className="absolute inset-0 h-full w-full overflow-hidden ">
|
||||||
|
<Background />
|
||||||
|
</div>
|
||||||
|
<Container className="flex min-h-screen flex-col items-center justify-between ">
|
||||||
|
<Hero />
|
||||||
|
<Projects />
|
||||||
|
<Features />
|
||||||
|
</Container>
|
||||||
|
<div className="relative">
|
||||||
|
<div className="absolute inset-0 h-full w-full overflow-hidden">
|
||||||
|
<Background />
|
||||||
|
</div>
|
||||||
|
<CTA />
|
||||||
|
</div>
|
||||||
|
<Footer />
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue