From 275231775e34ee171af15d7f402ecbacf53caddc Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:28:49 +0000 Subject: [PATCH] Update components/hero.tsx --- components/hero.tsx | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 components/hero.tsx diff --git a/components/hero.tsx b/components/hero.tsx new file mode 100644 index 0000000..94cb2f9 --- /dev/null +++ b/components/hero.tsx @@ -0,0 +1,40 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import { Button } from "@/components/ui/button"; +import { Phone } from "lucide-react"; + +export function Hero() { + return ( +
+
+ +
+
+ + + + + Disponible pour les Urgences +
+ + Dépannage Chauffage & Plomberie d'Urgence + + + Intervention rapide et assistance professionnelle pour toutes vos urgences de chauffage et plomberie. Nos 6 techniciens qualifiés sont prêts à intervenir quand vous en avez le plus besoin. + +
+ + +
+
+
+
+ ); +}