From 795182a34fa400fe508f4181ffcd8fa1b7db44fc Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 16:28:01 +0000 Subject: [PATCH] Update src/app/import/page.tsx --- src/app/import/page.tsx | 158 +++++++++++++--------------------------- 1 file changed, 51 insertions(+), 107 deletions(-) diff --git a/src/app/import/page.tsx b/src/app/import/page.tsx index 704b262..b4f9eac 100644 --- a/src/app/import/page.tsx +++ b/src/app/import/page.tsx @@ -1,14 +1,47 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; -import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import { Shield, Mail } from 'lucide-react'; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; +import Link from "next/link"; +import { Shield } from "lucide-react"; export default function ImportPage() { + const navItems = [ + { name: "Catalogue", id: "catalogue" }, + { name: "Import", id: "import" }, + { name: "Vendre", id: "vendre" }, + { name: "Blog", id: "blog" }, + ]; + + const footerColumns = [ + { + title: "Produits", items: [ + { label: "Catalogue", href: "/catalogue" }, + { label: "Import Service", href: "/import" }, + { label: "Vendre Votre Voiture", href: "/vendre" }, + { label: "Modèles Populaires", href: "/catalogue" }, + ], + }, + { + title: "Ressources", items: [ + { label: "À Propos", href: "/a-propos" }, + { label: "Blog", href: "/blog" }, + { label: "FAQ", href: "/faq" }, + { label: "Contact", href: "/contact" }, + ], + }, + { + title: "Légal", items: [ + { label: "Politique de Confidentialité", href: "#" }, + { label: "Conditions d'Utilisation", href: "#" }, + { label: "Politique de Retour", href: "#" }, + { label: "Mentions Légales", href: "#" }, + ], + }, + ]; + return ( - {/* Navigation */} - {/* About Import Service */} -
- -
- - {/* Import Process - Features */} -
+
- {/* Contact Form */} -
- -
- - {/* Footer */}