diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 6eed50e..2d2a888 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,49 +1,35 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; import TextAbout from "@/components/sections/about/TextAbout"; -import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven"; -import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; import FooterSimple from "@/components/sections/footer/FooterSimple"; export default function AboutPage() { - const navItems = [ - { name: "Home", id: "home" }, - { name: "Products", id: "products" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, - ]; - const footerColumns = [ { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/about" }, - { label: "Products", href: "/" }, + { label: "Products", href: "/products" }, { label: "Quality Standards", href: "#" }, ], }, { - title: "Support", - items: [ - { label: "Contact Us", href: "#contact" }, + title: "Support", items: [ + { label: "Contact Us", href: "/contact" }, { label: "FAQ", href: "#faq" }, { label: "Order Status", href: "#" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Food Safety", href: "#" }, ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Burlington Tower, Business Bay, Dubai", href: "#" }, { label: "+971 4 XXX XXXX", href: "#" }, { label: "info@flavorfoood.ae", href: "#" }, @@ -67,10 +53,13 @@ export default function AboutPage() {