Update src/app/about/page.tsx

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

View File

@@ -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() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Flavor Food"
navItems={navItems}
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "contact" },
]}
button={{
text: "Request Quote",
href: "/contact",
text: "Request Quote", href: "/contact"
}}
animateOnLoad={true}
/>
@@ -79,97 +68,16 @@ export default function AboutPage() {
<div id="about" data-section="about">
<TextAbout
tag="About Flavor Food"
title="12+ Years of Trust and Excellence in Food Supply"
title="Your Trusted Long-Term Ingredient Partner"
buttons={[
{
text: "Get Started",
href: "#",
text: "Contact Us", href: "/contact"
},
]}
useInvertedBackground={true}
/>
</div>
<div id="mission" data-section="mission">
<FeatureCardTwentySeven
tag="Our Mission"
title="Empowering Food Manufacturers with Premium Ingredients"
description="Since our founding in Dubai, Flavor Food has been committed to providing high-quality raw materials that help food and beverage manufacturers create products their customers love. We understand the complexity of managing ingredient supply chains, and we've built our business around simplifying that process."
features={[
{
id: "heritage",
title: "Rich Industry Heritage",
descriptions: [
"Over a decade of experience in GCC food supply",
"Deep relationships with international suppliers",
"Proven expertise in logistics and quality assurance",
],
},
{
id: "commitment",
title: "Commitment to Sustainability",
descriptions: [
"Sourcing from environmentally responsible producers",
"Temperature-controlled distribution minimizes waste",
"Partnership with certified organic suppliers",
],
},
{
id: "innovation",
title: "Continuous Innovation",
descriptions: [
"Latest storage and testing technologies",
"Regular product range expansion",
"Custom formulation support for clients",
],
},
]}
gridVariant="three-columns-all-equal-width"
animationType="blur-reveal"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="values-testimonials" data-section="values-testimonials">
<TestimonialCardFive
tag="Client Success Stories"
title="How We've Made a Difference"
description="Our clients consistently report improved production efficiency, better product quality, and streamlined supply chain operations after partnering with Flavor Food."
testimonials={[
{
id: "case-1",
name: "Amira Al-Mansouri",
date: "October 2024",
title: "Production Director, Al-Bayan Beverages",
quote: "Before Flavor Food, managing juice concentrate sourcing was chaotic. Now we have predictable supply, consistent quality, and a dedicated partner. Our production uptime improved by 20%.",
tag: "Juice Manufacturer",
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=bcht4z",
},
{
id: "case-2",
name: "Hassan Al-Zahra",
date: "September 2024",
title: "Operations Manager, Emirates Dairy Co.",
quote: "Switching to Flavor Food reduced our cost per unit by 15% while maintaining superior quality. Their logistics team ensures our WMP arrives in perfect condition every time.",
tag: "Dairy Producer",
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=t6b6b4",
},
{
id: "case-3",
name: "Fatima Al-Ketbi",
date: "August 2024",
title: "Head of Supply, Gourmet Pasta Works",
quote: "Flavor Food's account management is exceptional. They proactively suggest product alternatives, help us navigate supply challenges, and treat us like a true long-term partner.",
tag: "Pasta Manufacturer",
avatarSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=9f3h0f",
},
]}
textboxLayout="default"
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={footerColumns}
@@ -179,4 +87,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}