diff --git a/src/app/faq/page.tsx b/src/app/faq/page.tsx new file mode 100644 index 0000000..67b0092 --- /dev/null +++ b/src/app/faq/page.tsx @@ -0,0 +1,106 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import FaqDouble from "@/components/sections/faq/FaqDouble"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; + +export default function FaqPage() { + const footerColumns = [ + { + title: "Company", items: [ + { label: "About Us", href: "/about" }, + { label: "Products", href: "/products" }, + { label: "Quality Standards", href: "#" }, + ], + }, + { + title: "Support", items: [ + { label: "Contact Us", href: "/contact" }, + { label: "FAQ", href: "/faq" }, + { label: "Order Status", href: "#" }, + ], + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "Food Safety", href: "#" }, + ], + }, + { + title: "Contact", items: [ + { label: "Burlington Tower, Business Bay, Dubai", href: "#" }, + { label: "+971 4 XXX XXXX", href: "#" }, + { label: "info@flavorfoood.ae", href: "#" }, + ], + }, + ]; + + return ( + + + +
+ +
+ + +
+ ); +}