Files
alva/src/pages/Index.tsx
T
gpt-engineer-app[bot] 91d0d0025c Changes
2026-01-28 13:42:06 +00:00

24 lines
665 B
TypeScript

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