diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx
index 64b847a..da8b3ef 100644
--- a/src/app/products/page.tsx
+++ b/src/app/products/page.tsx
@@ -3,40 +3,33 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import ProductCardThree from "@/components/sections/product/ProductCardThree";
-import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven";
-import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
import FooterSimple from "@/components/sections/footer/FooterSimple";
-import Link from "next/link";
export default function ProductsPage() {
const footerColumns = [
{
- title: "Company",
- items: [
+ title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Products", href: "/products" },
{ label: "Quality Standards", href: "#" },
],
},
{
- title: "Support",
- items: [
+ title: "Support", items: [
{ label: "Contact Us", href: "/contact" },
- { label: "FAQ", href: "#" },
+ { 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: "#" },
@@ -61,110 +54,35 @@ export default function ProductsPage() {