/* * 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 (
); }