12 lines
260 B
TypeScript
12 lines
260 B
TypeScript
import HeroSection from "@/components/sections/HeroSection";
|
|
import HomeSections from "@/components/HomeSections";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="snap-container">
|
|
<HeroSection />
|
|
<HomeSections />
|
|
</div>
|
|
);
|
|
}
|