Files
alva/src/pages/Index.tsx
T
gpt-engineer-app[bot] a6c19572da Changes
2026-01-27 19:20:51 +00:00

18 lines
434 B
TypeScript

import HeroSection from "@/components/HeroSection";
import GallerySection from "@/components/GallerySection";
import PlansSection from "@/components/PlansSection";
import Footer from "@/components/Footer";
const Index = () => {
return (
<div className="bg-background text-foreground min-h-screen">
<HeroSection />
<GallerySection />
<PlansSection />
<Footer />
</div>
);
};
export default Index;