Files
clinica-veterinaria-formigi…/clinica-app/client/src/pages/Home.tsx

34 lines
1.1 KiB
TypeScript

/*
* DESIGN: "Clinical Warmth"
* Homepage principale della Clinica Veterinaria Formiginese
* Assembla tutti i componenti in ordine logico:
* Navbar → Hero → Servizi → Chi Siamo → Team → News → Prenotazione → Registrazione → Footer
*/
import Navbar from "@/components/Navbar";
import HeroSection from "@/components/HeroSection";
import ServicesSection from "@/components/ServicesSection";
import AboutSection from "@/components/AboutSection";
import TeamSection from "@/components/TeamSection";
import NewsSection from "@/components/NewsSection";
import BookingSection from "@/components/BookingSection";
import AuthSection from "@/components/AuthSection";
import Footer from "@/components/Footer";
export default function Home() {
return (
<div className="min-h-screen flex flex-col">
<Navbar />
<main className="flex-1">
<HeroSection />
<ServicesSection />
<AboutSection />
<TeamSection />
<NewsSection />
<BookingSection />
<AuthSection />
</main>
<Footer />
</div>
);
}