diff --git a/src/app/page.tsx b/src/app/page.tsx index b1b2dbb..8eeb829 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,19 +2,47 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; -import FeatureBento from '@/components/sections/feature/FeatureBento'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; -import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; -import { Award, Flame, Sparkles } from "lucide-react"; export default function LandingPage() { + const navItems = [ + { name: "Accueil", id: "/"}, + { name: "À Propos", id: "/about"}, + { name: "Produits", id: "/products"}, + { name: "Témoignages", id: "/testimonials"}, + { name: "FAQ", id: "/faq"}, + { name: "Contact", id: "/contact"} + ]; + + const footerColumns = [ + { + title: "Produits", items: [ + { label: "Bœuf", href: "/products"}, + { label: "Porc", href: "/products"}, + { label: "Volaille", href: "/products"}, + { label: "Charcuterie", href: "/products"} + ] + }, + { + title: "Services", items: [ + { label: "Découpe personnalisée", href: "/features"}, + { label: "Service traiteur", href: "/features"}, + { label: "Produits du terroir", href: "/features"} + ] + }, + { + title: "Entreprise", items: [ + { label: "À Propos de Nous", href: "/about"}, + { label: "Témoignages", href: "/testimonials"}, + { label: "FAQ", href: "/faq"}, + { label: "Contact", href: "/contact"} + ] + } + ]; + return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - +
);