Add src/app/faq/page.tsx
This commit is contained in:
106
src/app/faq/page.tsx
Normal file
106
src/app/faq/page.tsx
Normal file
@@ -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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
contentWidth="smallMedium"
|
||||
sizing="large"
|
||||
background="aurora"
|
||||
cardStyle="gradient-mesh"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="Flavor Food"
|
||||
navItems={[
|
||||
{ name: "Home", id: "home", href: "/" },
|
||||
{ name: "Products", id: "products", href: "/products" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact", href: "/contact" },
|
||||
]}
|
||||
button={{
|
||||
text: "Request Quote", href: "/contact"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
tag="Frequently Asked Questions"
|
||||
title="Everything You Need to Know About Flavor Food"
|
||||
description="Find comprehensive answers to common questions about our products, ordering processes, quality standards, delivery options, and partnership terms."
|
||||
faqs={[
|
||||
{
|
||||
id: "faq-1", title: "What is your minimum order quantity (MOQ)?", content: "MOQ varies by product category. For juice concentrates and dairy ingredients, typical minimums are 500kg per item. For oils, minimums are typically 1,000L per order. For canned goods, MOQ is usually 100 cases per product. We're flexible and can discuss custom arrangements based on your production volume and needs."},
|
||||
{
|
||||
id: "faq-2", title: "Do you provide product samples before ordering?", content: "Yes, we provide samples upon request for new clients and manufacturers evaluating our products. Sample sizes vary depending on the product type. We typically waive sample fees for serious manufacturers and businesses. Lead time for samples is usually 5-7 business days within the UAE."},
|
||||
{
|
||||
id: "faq-3", title: "What certifications and quality standards do you maintain?", content: "All Flavor Food products comply with ISO 22000 (Food Safety Management), FSSC 22000 (Food Safety System Certification), and HACCP standards. We also maintain UAE food safety approvals and hold certificates from our accredited supplier partners. Every batch is tested and certified before shipment."},
|
||||
{
|
||||
id: "faq-4", title: "How do you ensure consistent product quality?", content: "Every batch undergoes rigorous laboratory testing for purity, moisture content, microbial safety, and composition. Certificates of Analysis are provided with each shipment. We maintain strict temperature-controlled storage and logistics protocols to preserve product integrity from warehouse to your facility."},
|
||||
{
|
||||
id: "faq-5", title: "What are your typical delivery timelines?", content: "Within UAE: 3-5 business days. GCC region (Saudi Arabia, Oman, Qatar, Bahrain, Kuwait): 7-10 business days. International shipments depend on destination and customs clearance procedures. We offer express delivery options for urgent orders at premium rates."},
|
||||
{
|
||||
id: "faq-6", title: "Do you offer volume discounts for large orders?", content: "Yes, we provide tiered pricing for regular customers and large volume orders. Discounts increase based on order size and annual purchase commitments. Contact your dedicated account manager to discuss volume pricing, annual agreements, and custom solutions tailored to your production needs."},
|
||||
{
|
||||
id: "faq-7", title: "How do I place an order or request a quote?", content: "You can request a quote by visiting our contact page, calling our sales team, or emailing your requirements. We'll respond within 24 business hours with detailed pricing, delivery options, and terms. Once approved, orders can be placed via purchase order with standard payment terms available for established clients."},
|
||||
{
|
||||
id: "faq-8", title: "Do you provide technical support for product implementation?", content: "Absolutely. Each client is assigned a dedicated account manager who provides technical support, product specifications, usage recommendations, and troubleshooting assistance. We work closely with your team to ensure seamless integration of our ingredients into your manufacturing processes."},
|
||||
]}
|
||||
faqsAnimation="blur-reveal"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={footerColumns}
|
||||
bottomLeftText="© 2024 Flavor Food. All rights reserved."
|
||||
bottomRightText="Premium B2B Ingredients Supplier • Dubai, UAE"
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user