Files
cima.it/frontend/src/app/page.tsx
T

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>
);
}