diff --git a/clinica-app/client/src/components/Footer.tsx b/clinica-app/client/src/components/Footer.tsx index 17bb198..74a3dee 100644 --- a/clinica-app/client/src/components/Footer.tsx +++ b/clinica-app/client/src/components/Footer.tsx @@ -22,19 +22,19 @@ export default function Footer() { {/* Main footer */}
- {/* Brand */} + {/* Brand
-
-
- Clinica Veterinaria -
-
- Formiginese -
-
+
+
+ Clinica Veterinaria +
+
+ Formiginese +
+

Cura specialistica per cani e gatti a Formigine. Un team di professionisti al servizio della salute dei tuoi animali. @@ -48,7 +48,7 @@ export default function Footer() { Seguici su Facebook -

+
*/} {/* Link rapidi */}
@@ -120,9 +120,11 @@ export default function Footer() {
{[ - { days: "Lunedì — Venerdì", hours: "09:00 — 12:30\n14:30 — 19:00" }, - { days: "Sabato", hours: "09:00 — 12:30" }, - { days: "Domenica", hours: "Solo urgenze" }, + { days: "Visite: Lunedì — Venerdì", hours: "09:00 — 19:30" }, + { days: "Visite: Sabato", hours: "09:00 — 17:00" }, + { days: "Urgenze: Lunedì — Venerdì", hours: "08:00 — 22:30" }, + { days: "Urgenze: Sabato e Festivi", hours: "09:00 — 20:00" }, + ].map((slot) => (
@@ -135,12 +137,7 @@ export default function Footer() {
{/* Badge reperibilità */} -
-

- Reperibilità 24h -

-

7 giorni su 7

-
+
diff --git a/clinica-app/client/src/components/HeroSection.tsx b/clinica-app/client/src/components/HeroSection.tsx index d787a47..127d8e1 100644 --- a/clinica-app/client/src/components/HeroSection.tsx +++ b/clinica-app/client/src/components/HeroSection.tsx @@ -6,7 +6,7 @@ */ import { useState, useEffect } from "react"; import { Button } from "@/components/ui/button"; -import { ChevronDown, Calendar, Phone } from "lucide-react"; +import { ChevronDown, Calendar, Phone, Clock } from "lucide-react"; import { motion } from "framer-motion"; const heroImages = [ @@ -86,15 +86,7 @@ export default function HeroSection() {
{/* Badge */} - - - Reperibilità 24h · 7 giorni su 7 - + {/* Titolo principale */} - La salute del tuo animale,{" "} - la nostra missione + CLINICA VETERINARIA FORMIGINESE{" "} + {/* Sottotitolo */} @@ -120,9 +112,43 @@ export default function HeroSection() { className="text-white/85 text-lg mb-8 leading-relaxed max-w-xl" style={{ fontFamily: "'Nunito Sans', sans-serif" }} > - Clinica veterinaria specialistica a Formigine. Un team di 6 professionisti - dedicati alla cura di cani e gatti, con tecnologie diagnostiche avanzate. + + +
+

+ Orari +

+
+ {[ + { days: "Visite: Lunedì — Venerdì", hours: "09:00 — 19:30" }, + { days: "Visite: Sabato", hours: "09:00 — 17:00" }, + { days: "Urgenze: Lunedì — Venerdì", hours: "08:00 — 22:30" }, + { days: "Urgenze: Sabato e Festivi", hours: "09:00 — 20:00" }, + + ].map((slot) => ( +
+ +
+

{slot.days}

+

{slot.hours}

+
+
+ ))} +
+ + {/* Badge reperibilità */} + +
+
{/* CTA buttons */} {/* Stats */} - - {[ - { value: "6", label: "Specialisti" }, - { value: "15+", label: "Anni di esperienza" }, - { value: "24h", label: "Reperibilità" }, - ].map((stat) => ( -
-
- {stat.value} -
-
- {stat.label} -
-
- ))} -
+ {/* Orari */} +
diff --git a/clinica-app/client/src/components/Navbar.tsx b/clinica-app/client/src/components/Navbar.tsx index 6d63732..9d2fcba 100644 --- a/clinica-app/client/src/components/Navbar.tsx +++ b/clinica-app/client/src/components/Navbar.tsx @@ -83,9 +83,7 @@ export default function Navbar() { 059 839.62.63  |  320 532.24.39 (urgenze 24h) - - Reperibilità 24h · 7 giorni su 7 - + diff --git a/clinica-app/client/src/components/ServicesSection.tsx b/clinica-app/client/src/components/ServicesSection.tsx index dd73756..c6dcd66 100644 --- a/clinica-app/client/src/components/ServicesSection.tsx +++ b/clinica-app/client/src/components/ServicesSection.tsx @@ -277,11 +277,10 @@ export default function ServicesSection() { className="mb-4 text-[#1B4F72]" style={{ fontFamily: "'Cormorant Garamond', serif", fontSize: "clamp(2rem, 4vw, 3rem)", fontWeight: 600 }} > - Servizi Clinici + Servizi

- Sei aree di eccellenza clinica per accompagnare prevenzione, diagnosi e trattamento - dei tuoi animali domestici, con tecnologie avanzate e professionisti esperti. +

diff --git a/clinica-app/vite.config.ts b/clinica-app/vite.config.ts index 9c60e63..fed6b04 100644 --- a/clinica-app/vite.config.ts +++ b/clinica-app/vite.config.ts @@ -150,7 +150,15 @@ function vitePluginManusDebugCollector(): Plugin { }; } -const plugins = [react(), tailwindcss(), jsxLocPlugin(), vitePluginManusRuntime(), vitePluginManusDebugCollector()]; +const isProductionBuild = process.env.NODE_ENV === "production"; + +const plugins = [ + react(), + tailwindcss(), + jsxLocPlugin(), + !isProductionBuild && vitePluginManusRuntime(), + !isProductionBuild && vitePluginManusDebugCollector(), +].filter(Boolean); export default defineConfig({ plugins,