Files
SculptedArcWebSite/app/page.tsx
2026-05-22 07:24:00 +01:00

14 lines
442 B
TypeScript

import Image from "next/image";
import HeroSection from "@/components/hero-section";
export default function Home() {
return (
<div className="flex flex-col flex-1 items-center justify-center bg-zinc-50 font-sans dark:bg-black">
<main className="flex flex-1 w-full max-w-7xl flex-col items-center justify-between py-32 px-16 bg-white dark:bg-black sm:items-start">
<HeroSection/>
</main>
</div>
);
}