9 lines
235 B
TypeScript
9 lines
235 B
TypeScript
import HeroSection from "@/components/sections/HeroSection";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className=" bg-brand-beige text-brand-black flex flex-col items-center justify-center">
|
|
<HeroSection />
|
|
</main>
|
|
);
|
|
} |