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