Initial commit: demo sito clinica veterinaria

This commit is contained in:
2026-04-04 10:14:07 +02:00
commit 0ca0306a34
111 changed files with 17895 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
/*
* 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>
);
}