Update app/page.tsx
This commit is contained in:
parent
4800dd3a94
commit
bda63989dc
|
|
@ -0,0 +1,28 @@
|
|||
import { Container } from "@/components/container";
|
||||
import { Hero } from "@/components/hero";
|
||||
import { Background } from "@/components/background";
|
||||
import { Features } from "@/components/features";
|
||||
import { Menu } from "@/components/menu";
|
||||
|
||||
import { CTA } from "@/components/cta";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<div className="relative">
|
||||
<div className="absolute inset-0 h-full w-full overflow-hidden ">
|
||||
{/* removed */}
|
||||
</div>
|
||||
<Container className="flex min-h-screen flex-col items-center justify-between ">
|
||||
<Hero />
|
||||
<Menu />
|
||||
<Features />
|
||||
</Container>
|
||||
<div className="relative">
|
||||
<div className="absolute inset-0 h-full w-full overflow-hidden">
|
||||
{/* removed */}
|
||||
</div>
|
||||
<CTA />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue