- Partagez votre expérience avec Webild Construction. Vos avis nous aident à continuer à améliorer nos services.
+ Partagez votre expérience avec Webild Construction. Vos avis nous aident à
+ continuer à améliorer nos services.
{/* Review Form */}
-
Soumettre un Avis
+
Soumettre un Avis
{reviewSubmitted ? (
-
✓ Merci pour votre avis!
-
Votre témoignage a été reçu avec succès. Nous l'examinerons avant de le publier.
+
+ ✓ Merci pour votre avis!
+
+
+ Votre témoignage a été reçu avec succès. Nous l'examinerons avant de
+ le publier.
+
) : (
);
-}
\ No newline at end of file
+}
diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx
new file mode 100644
index 0000000..c528afd
--- /dev/null
+++ b/src/app/products/page.tsx
@@ -0,0 +1,163 @@
+"use client";
+
+import Link from "next/link";
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
+import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia";
+import ProductCardOne from "@/components/sections/product/ProductCardOne";
+import ContactText from "@/components/sections/contact/ContactText";
+import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
+import { Package, ShoppingCart } from "lucide-react";
+
+export default function ProductsPage() {
+ const navItems = [
+ { name: "Accueil", id: "/" },
+ { name: "Services", id: "/services" },
+ { name: "Produits", id: "/products" },
+ { name: "Réalisations", id: "/portfolio" },
+ { name: "À propos", id: "/about" },
+ { name: "Contact", id: "/contact" },
+ ];
+
+ const footerColumns = [
+ {
+ title: "Services", items: [
+ { label: "Rénovation", href: "/services" },
+ { label: "Construction", href: "/services" },
+ { label: "Maçonnerie", href: "/services" },
+ { label: "Toiture", href: "/services" },
+ ],
+ },
+ {
+ title: "Entreprise", items: [
+ { label: "À propos", href: "/about" },
+ { label: "Nos Réalisations", href: "/portfolio" },
+ { label: "Avis Clients", href: "/" },
+ { label: "Contactez-nous", href: "/contact" },
+ ],
+ },
+ {
+ title: "Contact", items: [
+ { label: "Téléphone: +32 (0) 2 123 45 67", href: "tel:+32212345678" },
+ { label: "Email: info@webild.be", href: "mailto:info@webild.be" },
+ { label: "Belgique", href: "#" },
+ { label: "WhatsApp", href: "https://wa.me/32212345678" },
+ ],
+ },
+ {
+ title: "Légal", items: [
+ { label: "Politique de Confidentialité", href: "#" },
+ { label: "Conditions d'Utilisation", href: "#" },
+ { label: "Mentions Légales", href: "#" },
+ ],
+ },
+ ];
+
+ return (
+
+ {/* Navbar */}
+
+
+
+
+ {/* Products Hero Section */}
+
+
+
+
+ {/* Products Section */}
+
+
+ {/* CTA Section */}
+
+
+
+
+ {/* Footer */}
+
+
+ );
+}