29 lines
821 B
TypeScript
29 lines
821 B
TypeScript
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>
|
|
);
|
|
}
|