Update src/app/contact/page.tsx

This commit is contained in:
2026-03-13 12:15:45 +00:00
parent 108ec6fbc8
commit 5c02ce2ce8

View File

@@ -2,41 +2,34 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import TextAbout from "@/components/sections/about/TextAbout";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FaqDouble from "@/components/sections/faq/FaqDouble";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import Link from "next/link";
export default function ContactPage() {
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,87 +54,32 @@ export default function ContactPage() {
<NavbarLayoutFloatingInline
brandName="Flavor Food"
navItems={[
{ name: "Home", id: "home" },
{ name: "Products", id: "products" },
{ name: "Home", id: "home", href: "/" },
{ name: "Products", id: "products", href: "/products" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
]}
button={{
text: "Request Quote",
href: "/contact",
}}
text: "Request Quote", href: "/contact"}}
animateOnLoad={true}
/>
</div>
<div id="contact-intro" data-section="contact-intro">
<TextAbout
tag="Contact Flavor Food"
title="Let's Discuss Your Ingredient Needs"
buttons={[]}
useInvertedBackground={false}
/>
</div>
<div id="contact-form" data-section="contact-form">
<div id="contact" data-section="contact">
<ContactSplit
tag="Get in Touch"
title="Ready to Partner with Flavor Food?"
description="Contact our sales team to discuss your ingredient needs, request samples, or place an order. We typically respond to inquiries within 24 hours."
tag="Contact Us"
title="Get in Touch with Our Sales Team"
description="Have questions about our products? Need a quote? Ready to order? Contact us today. We're here to help you find the perfect ingredient solutions for your manufacturing needs."
background={{
variant: "radial-gradient",
}}
variant: "radial-gradient"}}
useInvertedBackground={true}
inputPlaceholder="Enter your business email"
buttonText="Request Information"
termsText="By submitting, you agree to our Privacy Policy and Terms of Service."
buttonText="Send Inquiry"
termsText="By submitting, you agree to our Privacy Policy and Terms of Service. We'll respond within 24 business hours."
mediaAnimation="blur-reveal"
/>
</div>
<div id="contact-faq" data-section="contact-faq">
<FaqDouble
tag="Quick Answers"
title="Common Questions About Ordering"
description="Find quick answers to questions about our ordering process, delivery, and support."
faqs={[
{
id: "faq-1",
title: "How do I place an order?",
content: "Contact our sales team via email at info@flavorfoood.ae or phone at +971 4 XXX XXXX. We'll guide you through the ordering process, discuss volume requirements, and arrange delivery logistics.",
},
{
id: "faq-2",
title: "What payment terms do you offer?",
content: "We offer flexible payment terms for qualified buyers including net 30, net 60, and consignment arrangements. Terms are negotiated based on order volume and customer history.",
},
{
id: "faq-3",
title: "How quickly can you fulfill orders?",
content: "Standard orders are fulfilled within 5-7 business days within the UAE. Rush orders can be accommodated with 48-hour notice. International orders depend on destination and clearance times.",
},
{
id: "faq-4",
title: "Do you provide technical support?",
content: "Yes, our technical team is available to discuss product specifications, provide usage guidance, and help troubleshoot any production issues related to our ingredients.",
},
{
id: "faq-5",
title: "Can I request a site visit?",
content: "Absolutely. We welcome facility visits from potential partners. Our team can showcase our operations, storage facilities, and quality control processes. Schedule a visit via our contact form.",
},
{
id: "faq-6",
title: "What regions do you deliver to?",
content: "We primarily serve UAE and GCC countries. For international inquiries beyond the GCC region, please contact our sales team to discuss options and logistics.",
},
]}
faqsAnimation="blur-reveal"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={footerColumns}
@@ -151,4 +89,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}