Initial commit: demo sito clinica veterinaria
This commit is contained in:
33
clinica-app/client/src/pages/Home.tsx
Normal file
33
clinica-app/client/src/pages/Home.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user