diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 314fb37..44745c3 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,53 +1,49 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import MediaAbout from "@/components/sections/about/MediaAbout"; import FeatureCardSix from "@/components/sections/feature/FeatureCardSix"; +import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; import FooterSimple from "@/components/sections/footer/FooterSimple"; -import { Zap } from "lucide-react"; +import { Heart, Zap } from "lucide-react"; export default function AboutPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "About Us", id: "about" }, - { name: "Products", id: "products" }, - { name: "Services", id: "services" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "About Us", id: "/about" }, + { name: "Products", id: "/products" }, + { name: "Services", id: "/services" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, - { label: "Our Services", href: "/" }, - { label: "Products", href: "/" }, - { label: "Contact", href: "/" }, + { label: "Our Services", href: "/services" }, + { label: "Products", href: "/products" }, + { label: "Contact", href: "/contact" }, ], }, { - title: "Services", - items: [ - { label: "Vending Machine Sales", href: "#" }, - { label: "Rental Options", href: "#" }, - { label: "Maintenance Plans", href: "#" }, - { label: "Technical Support", href: "#" }, + title: "Services", items: [ + { label: "Vending Machine Sales", href: "/products" }, + { label: "Rental Options", href: "/services" }, + { label: "Maintenance Plans", href: "/services" }, + { label: "Technical Support", href: "/contact" }, ], }, { - title: "Connect", - items: [ - { label: "WhatsApp", href: "https://wa.me/+972-example" }, + title: "Connect", items: [ + { label: "WhatsApp", href: "https://wa.me/972123456789" }, { label: "Email Us", href: "mailto:info@meirfoodmachines.co.il" }, { label: "Call Us", href: "tel:+972-123-456789" }, - { label: "Request Quote", href: "/" }, + { label: "Request Quote", href: "/contact" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, @@ -69,63 +65,75 @@ export default function AboutPage() { secondaryButtonStyle="radial-glow" headingFontWeight="medium" > -