'use client';
import { ArrowRight, ChevronRight, Menu, MapPin, Phone, Mail, Facebook, Twitter, Linkedin, Instagram, Trophy, Store, Factory, ShieldCheck, Snowflake, TrendingUp, Lightbulb, Globe, Handshake, Settings, Leaf, CheckCircle2 } from 'lucide-react';
import Link from 'next/link';
import Image from 'next/image';
import { useForm, ValidationError } from '@formspree/react';
function HeroSlider() {
return (
<section id="home" className="relative min-h-[85vh] flex items-center overflow-hidden">
{/* Background Image */}
<div
className="absolute inset-0 bg-cover bg-center z-0"
style={{ backgroundImage: `url('https://i.ibb.co/8DVVb6Ld/Remove-card-with-202604011303.jpg')` }}
/>
{/* Content */}
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-20 w-full py-8">
<div className="grid grid-cols-12 gap-6">
<div className="col-span-12 md:col-span-9 lg:col-span-7 text-left flex flex-col items-start bg-[#800000]/80 backdrop-blur-md p-8 md:p-12 rounded-lg">
<h1 className="font-heading text-5xl md:text-6xl lg:text-7xl font-extrabold text-white leading-[1.1] tracking-tight mb-6 drop-shadow-[0_4px_8px_rgba(0,0,0,0.8)]">
Scaling the Future of African Convenience Foods.
</h1>
<p className="text-lg md:text-xl text-white mb-8 max-w-3xl leading-relaxed font-body font-bold drop-shadow-[0_2px_6px_rgba(0,0,0,0.8)]">
Browns Foods® is Africa’s premier manufacturer of frozen corn dogs and innovative snacks. Discover Browns Foods®, where South African culinary heritage meets uncompromising quality in every delicious bite.
</p>
<div className="flex flex-col sm:flex-row gap-4 justify-start w-full">
<Link
href="#our-range"
className="inline-flex items-center justify-center px-8 py-3.5 border border-transparent text-base font-bold rounded-none text-brand-burgundy bg-brand-gold hover:bg-[#c5951c] transition-all shadow-lg"
>
Explore Range
</Link>
<Link
href="#about-us"
className="inline-flex items-center justify-center px-8 py-3.5 border-2 border-brand-gold text-base font-bold rounded-none text-brand-gold bg-transparent hover:bg-brand-gold/20 transition-all shadow-lg backdrop-blur-sm"
>
Our Story
</Link>
</div>
</div>
</div>
</div>
</section>
);
}
function ContactForm() {
const [state, handleSubmit] = useForm('xpqoozag');
if (state.succeeded) {
return (
<div className="p-6 bg-green-50 border border-green-200 text-green-800 text-center rounded">
<h4 className="font-bold text-lg mb-2">Thank you!</h4>
<p>Your message has been sent successfully. We will get back to you soon.</p>
</div>
);
}
return (
<form onSubmit={handleSubmit} className="space-y-4">
<div className="grid grid-cols-1 sm:grid-cols-2 gap-4">
<div>
<label htmlFor="contactName" className="block text-sm font-medium text-brand-burgundy mb-1">Full Name</label>
<input type="text" id="contactName" name="contactName" className="w-full px-4 py-2 border border-gray-300 rounded-none focus:ring-brand-gold focus:border-brand-gold bg-white/80" placeholder="Your name" required />
<ValidationError prefix="Name" field="contactName" errors={state.errors} />
</div>
<div>
<label htmlFor="contactEmail" className="block text-sm font-medium text-brand-burgundy mb-1">Email</label>
<input type="email" id="contactEmail" name="contactEmail" className="w-full px-4 py-2 border border-gray-300 rounded-none focus:ring-brand-gold focus:border-brand-gold bg-white/80" placeholder="Your email" required />
<ValidationError prefix="Email" field="contactEmail" errors={state.errors} />
</div>
</div>
<div>
<label htmlFor="contactSubject" className="block text-sm font-medium text-brand-burgundy mb-1">Subject</label>
<select id="contactSubject" name="contactSubject" className="w-full px-4 py-2 border border-gray-300 rounded-none focus:ring-brand-gold focus:border-brand-gold bg-white/80" required>
<option>Retail Partnership</option>
<option>Distribution Enquiry</option>
<option>Operational Collaboration</option>
<option>General Enquiry</option>
</select>
<ValidationError prefix="Subject" field="contactSubject" errors={state.errors} />
</div>
<div>
<label htmlFor="contactMessage" className="block text-sm font-medium text-brand-burgundy mb-1">Message</label>
<textarea id="contactMessage" name="contactMessage" rows={4} className="w-full px-4 py-2 border border-gray-300 rounded-none focus:ring-brand-gold focus:border-brand-gold bg-white/80" placeholder="How can we help you?" required></textarea>
<ValidationError prefix="Message" field="contactMessage" errors={state.errors} />
</div>
<button type="submit" disabled={state.submitting} className="w-full px-8 py-3.5 border border-transparent text-base font-bold rounded-none text-white bg-[#800000] hover:bg-[#600000] transition-all disabled:opacity-70 disabled:cursor-not-allowed">
{state.submitting ? 'Sending...' : 'Send Message'}
</button>
</form>
);
}
function InvestorForm() {
const [state, handleSubmit] = useForm('xpqoozag');
if (state.succeeded) {
return (
<div className="p-6 bg-green-50 border border-green-200 text-green-800 text-center rounded mt-4">
<h4 className="font-bold text-lg mb-2">Request Received</h4>
<p>Thank you for your interest. We will review your request and send the investor deck shortly.</p>
</div>
);
}
return (
<form onSubmit={handleSubmit} className="text-left space-y-4 font-body">
<div className="grid grid-cols-1 sm:grid-cols-2 gap-4">
<div>
<label htmlFor="fullName" className="block text-sm font-medium text-brand-burgundy mb-1">Full Name</label>
<input type="text" id="fullName" name="fullName" className="w-full px-4 py-2 border border-[#800000] rounded-none focus:ring-1 focus:ring-brand-gold focus:border-brand-gold bg-white/80 outline-none transition-colors" placeholder="John Doe" required />
<ValidationError prefix="Name" field="fullName" errors={state.errors} />
</div>
<div>
<label htmlFor="phone" className="block text-sm font-medium text-brand-burgundy mb-1">Phone Number</label>
<input type="tel" id="phone" name="phone" className="w-full px-4 py-2 border border-[#800000] rounded-none focus:ring-1 focus:ring-brand-gold focus:border-brand-gold bg-white/80 outline-none transition-colors" placeholder="+27 00 000 0000" required />
<ValidationError prefix="Phone" field="phone" errors={state.errors} />
</div>
</div>
<div>
<label htmlFor="email" className="block text-sm font-medium text-brand-burgundy mb-1">Email Address</label>
<input type="email" id="email" name="email" className="w-full px-4 py-2 border border-[#800000] rounded-none focus:ring-1 focus:ring-brand-gold focus:border-brand-gold bg-white/80 outline-none transition-colors" placeholder="john@example.com" required />
<ValidationError prefix="Email" field="email" errors={state.errors} />
</div>
<div>
<label htmlFor="companyName" className="block text-sm font-medium text-brand-burgundy mb-1">Company / Investment Firm <span className="text-brand-dark/50 font-normal">(Optional)</span></label>
<input type="text" id="companyName" name="companyName" className="w-full px-4 py-2 border border-[#800000] rounded-none focus:ring-1 focus:ring-brand-gold focus:border-brand-gold bg-white/80 outline-none transition-colors" placeholder="Company Name" />
<ValidationError prefix="Company" field="companyName" errors={state.errors} />
</div>
<div>
<label htmlFor="investmentInterest" className="block text-sm font-medium text-brand-burgundy mb-1">Investment Interest</label>
<select id="investmentInterest" name="investmentInterest" defaultValue="" className="w-full px-4 py-2 border border-[#800000] rounded-none focus:ring-1 focus:ring-brand-gold focus:border-brand-gold bg-white/80 outline-none transition-colors font-body" required>
<option value="" disabled>Select an option</option>
<option value="angel">Angel</option>
<option value="vc">VC</option>
<option value="strategic">Strategic Partner</option>
<option value="other">Other</option>
</select>
<ValidationError prefix="Interest" field="investmentInterest" errors={state.errors} />
</div>
<div>
<label htmlFor="message" className="block text-sm font-medium text-brand-burgundy mb-1">Message <span className="text-brand-dark/50 font-normal">(Optional)</span></label>
<textarea id="message" name="message" rows={3} className="w-full px-4 py-2 border border-[#800000] rounded-none focus:ring-1 focus:ring-brand-gold focus:border-brand-gold bg-white/80 outline-none transition-colors" placeholder="How can we partner together?"></textarea>
<ValidationError prefix="Message" field="message" errors={state.errors} />
</div>
<div className="flex items-start gap-2 pt-2">
<input type="checkbox" id="confirmInterest" name="confirmInterest" className="mt-1 shrink-0 text-brand-gold focus:ring-brand-gold border-[#800000] rounded-sm" required />
<label htmlFor="confirmInterest" className="text-sm text-brand-dark/80">
I confirm I am interested in investment opportunities
</label>
</div>
<button type="submit" disabled={state.submitting} className="w-full mt-4 px-8 py-3.5 border border-transparent text-base font-bold rounded-none text-white bg-[#DAA520] hover:bg-[#c5951c] hover:scale-[1.02] transition-all duration-300 shadow-sm disabled:opacity-70 disabled:cursor-not-allowed">
{state.submitting ? 'Submitting...' : 'Request Investor Deck'}
</button>
</form>
);
}
export default function Home() {
return (
<div className="min-h-screen flex flex-col font-body bg-white text-brand-dark">
{/* Header */}
<header className="sticky top-0 z-50 w-full backdrop-blur-md bg-white/95 border-b border-brand-burgundy/20 shadow-sm">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="flex justify-between items-center h-16 md:h-20">
{/* Logo */}
<div className="flex-shrink-0 flex items-center gap-2">
<img src="https://i.ibb.co/Rnm46f6/Browns-hectagon.jpg" alt="Browns Foods Logo" className="h-12 md:h-16 object-contain" />
</div>
{/* Desktop Navigation */}
<nav className="hidden md:flex space-x-8">
{['Home', 'About Us', 'Our Range', 'Media', 'Investors', 'Contact'].map((item) => (
<Link
key={item}
href={`#${item.toLowerCase().replace(' ', '-')}`}
className="text-sm font-bold text-brand-burgundy hover:text-brand-gold transition-colors uppercase tracking-wide"
>
{item}
</Link>
))}
</nav>
{/* Inquire Button */}
<div className="hidden md:flex items-center">
<Link
href="#contact"
className="inline-flex items-center justify-center px-6 py-2.5 border border-transparent text-sm font-bold rounded-none text-brand-burgundy bg-brand-gold hover:bg-[#c5951c] shadow-sm transition-all"
>
Inquire Now
</Link>
</div>
{/* Mobile menu button */}
<div className="flex items-center md:hidden">
<button className="text-brand-burgundy hover:text-brand-gold">
<Menu className="h-6 w-6" />
</button>
</div>
</div>
</div>
</header>
<main className="flex-grow">
<HeroSlider />
{/* About Us, Vision & Mission Section */}
<section id="about-us" className="bg-white relative z-20 py-12">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 space-y-8">
{/* About Us */}
<div className="py-6 px-4 md:px-8 bg-gray-50/50 backdrop-blur-md border border-brand-burgundy shadow-sm flex flex-col items-center text-center">
<h2 className="font-heading text-xl font-bold text-brand-burgundy mb-2 uppercase tracking-widest">
About Us
</h2>
<h3 className="font-heading text-3xl md:text-4xl font-bold text-brand-burgundy mb-6 leading-tight">
The Architecture of Taste.<br/>
<span className="text-brand-gold">The Engine of Scale.</span>
</h3>
<p className="text-brand-dark/90 text-lg leading-relaxed max-w-4xl">
What began in 2019 as a small kitchen operation has grown into a category-leading food manufacturing business. Under the leadership of Mabel and Wale, with over 35 years of combined experience in broadcasting, business development, and international trade, Browns Foods has built a strong capability for creating products that are truly retail-ready.
</p>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 gap-8">
{/* Vision */}
<div className="py-6 px-4 md:px-8 bg-gray-50/50 backdrop-blur-md border border-brand-burgundy shadow-sm flex flex-col items-center text-center h-full">
<h2 className="font-heading text-xl font-bold text-brand-burgundy mb-4 uppercase tracking-widest">
Our Vision
</h2>
<p className="text-brand-dark/90 text-lg leading-relaxed max-w-4xl">
"To be Africa's leading convenience food brand, recognised for uncompromising quality, industrial scale, and relentless innovation."
</p>
</div>
{/* Mission */}
<div className="py-6 px-4 md:px-8 bg-gray-50/50 backdrop-blur-md border border-brand-burgundy shadow-sm flex flex-col items-center text-center h-full">
<h2 className="font-heading text-xl font-bold text-brand-burgundy mb-4 uppercase tracking-widest">
Our Mission
</h2>
<p className="text-brand-dark/90 text-lg leading-relaxed max-w-4xl">
"To deliver premium, accessible, and consistent food solutions that meet the demands of the modern global consumer."
</p>
</div>
</div>
</div>
</section>
{/* Power Stats Section */}
<section className="py-12 bg-gray-50 relative z-20">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="grid grid-cols-12 gap-8">
{/* Stat 1 */}
<div className="col-span-12 md:col-span-4 flex flex-col items-center p-6 bg-white/60 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center">
<div className="mb-4 w-16 h-16 rounded-full bg-brand-gold/10 flex items-center justify-center border border-brand-gold/20">
<Factory className="h-8 w-8 text-brand-gold" />
</div>
<h3 className="font-heading text-xl font-bold text-brand-burgundy mb-3">First-to-Market</h3>
<p className="text-brand-dark/80 text-base leading-relaxed">
Only industrial manufacturer of frozen corn dogs in Africa.
</p>
</div>
{/* Stat 2 */}
<div className="col-span-12 md:col-span-4 flex flex-col items-center p-6 bg-white/60 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center">
<div className="mb-4 w-16 h-16 rounded-full bg-brand-gold/10 flex items-center justify-center border border-brand-gold/20">
<Store className="h-8 w-8 text-brand-gold" />
</div>
<h3 className="font-heading text-xl font-bold text-brand-burgundy mb-3">Retail Reach</h3>
<p className="text-brand-dark/80 text-base leading-relaxed">
National distribution across Shoprite, Checkers, Pick n Pay, Food Lover’s Market, Walmart Africa, Makro, and selected SPAR stores.
</p>
</div>
{/* Stat 3 */}
<div className="col-span-12 md:col-span-4 flex flex-col items-center p-6 bg-white/60 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center">
<div className="mb-4 w-16 h-16 rounded-full bg-brand-gold/10 flex items-center justify-center border border-brand-gold/20">
<Trophy className="h-8 w-8 text-brand-gold" />
</div>
<h3 className="font-heading text-xl font-bold text-brand-burgundy mb-3">Award Winning</h3>
<p className="text-brand-dark/80 text-base leading-relaxed">
Shoprite Checkers SMME of the Year (Regional & National).<br/>Presidential Awards, 2022.
</p>
</div>
</div>
</div>
</section>
{/* Our Advantage */}
<section className="py-12 bg-white relative z-20">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="mb-12 text-center flex flex-col items-center">
<span className="text-sm font-bold uppercase tracking-widest text-brand-gold block mb-2">Industrial Capability</span>
<h2 className="font-heading text-3xl md:text-4xl font-bold text-brand-burgundy">
Our Advantage
</h2>
</div>
<div className="grid grid-cols-12 gap-8">
{/* Advantage 1 */}
<div className="col-span-12 md:col-span-6 flex flex-col items-center p-4 bg-gray-50/50 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center">
<h4 className="font-heading text-xl font-bold text-brand-burgundy mb-3">First Mover Advantage</h4>
<p className="text-brand-dark/80 leading-relaxed">
We are the first and only industrial scale manufacturer of frozen corn dogs in Africa. This positions us as a clear category leader with a strong first mover advantage.
</p>
</div>
{/* Advantage 2 */}
<div className="col-span-12 md:col-span-6 flex flex-col items-center p-4 bg-gray-50/50 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center">
<h4 className="font-heading text-xl font-bold text-brand-burgundy mb-3">Scalability</h4>
<p className="text-brand-dark/80 leading-relaxed">
Our custom built production systems are designed for high volume output, fast turnaround times, and consistent product quality across every batch.
</p>
</div>
{/* Advantage 3 */}
<div className="col-span-12 md:col-span-6 flex flex-col items-center p-4 bg-gray-50/50 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center">
<h4 className="font-heading text-xl font-bold text-brand-burgundy mb-3">Strategic Marketing</h4>
<p className="text-brand-dark/80 leading-relaxed">
Powered by Axon Media, we combine AI driven advertising with high quality brand storytelling to increase product visibility and drive strong retail sell through.
</p>
</div>
{/* Advantage 4 */}
<div className="col-span-12 md:col-span-6 flex flex-col items-center p-4 bg-gray-50/50 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center">
<h4 className="font-heading text-xl font-bold text-brand-burgundy mb-3">Retail Ready Execution</h4>
<p className="text-brand-dark/80 leading-relaxed">
We have a deep understanding of retail requirements, from product development to packaging and distribution. This ensures smooth integration into major retail chains.
</p>
</div>
</div>
</div>
</section>
{/* What We Do: Manufacturing Excellence */}
<section className="py-12 bg-gray-50 relative z-20">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="mb-12 text-center flex flex-col items-center">
<span className="text-sm font-bold uppercase tracking-widest text-brand-gold block mb-2">Manufacturing Excellence</span>
<h2 className="font-heading text-3xl md:text-4xl font-bold text-brand-burgundy mb-6">
What We Do
</h2>
<p className="text-brand-dark/90 text-lg leading-relaxed max-w-3xl mb-8">
We develop and manufacture premium frozen convenience products at scale for:
</p>
<div className="flex flex-col md:flex-row gap-6 mb-8 justify-center">
<div className="flex items-center gap-3 bg-white/60 backdrop-blur-md border border-brand-burgundy/10 shadow-sm px-4 py-3">
<CheckCircle2 className="h-6 w-6 text-brand-gold flex-shrink-0" />
<span className="font-bold text-brand-dark text-lg">Tier-1 retail chains</span>
</div>
<div className="flex items-center gap-3 bg-white/60 backdrop-blur-md border border-brand-burgundy/10 shadow-sm px-4 py-3">
<CheckCircle2 className="h-6 w-6 text-brand-gold flex-shrink-0" />
<span className="font-bold text-brand-dark text-lg">National distributors</span>
</div>
<div className="flex items-center gap-3 bg-white/60 backdrop-blur-md border border-brand-burgundy/10 shadow-sm px-4 py-3">
<CheckCircle2 className="h-6 w-6 text-brand-gold flex-shrink-0" />
<span className="font-bold text-brand-dark text-lg">Large-scale food service</span>
</div>
</div>
<p className="text-brand-dark/90 text-lg leading-relaxed max-w-4xl">
Our strength lies at the intersection of product innovation and high-efficiency manufacturing. We scale without compromising the artisanal quality that defined our beginnings.
</p>
</div>
</div>
</section>
{/* Quality, Safety and Scale */}
<section className="py-12 bg-white relative z-20">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="mb-12 text-center flex flex-col items-center">
<span className="text-sm font-bold uppercase tracking-widest text-brand-gold block mb-2">Hexagon of Excellence</span>
<h2 className="font-heading text-3xl md:text-4xl font-bold text-brand-burgundy mb-6">
Quality, Safety and Scale
</h2>
<p className="text-brand-dark/90 text-lg leading-relaxed max-w-3xl mb-12">
Quality is not an afterthought. It is embedded in the Browns Foods® Hexagon of Excellence:
</p>
<div className="grid grid-cols-12 gap-8 w-full">
<div className="col-span-12 md:col-span-4 flex flex-col items-center p-4 bg-gray-50/50 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center">
<div className="mb-4 w-16 h-16 rounded-full bg-brand-gold/10 flex items-center justify-center border border-brand-gold/20">
<ShieldCheck className="h-8 w-8 text-brand-gold" />
</div>
<h4 className="font-heading text-xl font-bold text-brand-burgundy mb-3">Compliance</h4>
<p className="text-brand-dark/80 leading-relaxed">
Strict adherence to international hygiene and food safety standards.
</p>
</div>
<div className="col-span-12 md:col-span-4 flex flex-col items-center p-4 bg-gray-50/50 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center">
<div className="mb-4 w-16 h-16 rounded-full bg-brand-gold/10 flex items-center justify-center border border-brand-gold/20">
<Snowflake className="h-8 w-8 text-brand-gold" />
</div>
<h4 className="font-heading text-xl font-bold text-brand-burgundy mb-3">Cold Chain Integrity</h4>
<p className="text-brand-dark/80 leading-relaxed">
Advanced packaging and logistics management ensure product freshness from factory to freezer.
</p>
</div>
<div className="col-span-12 md:col-span-4 flex flex-col items-center p-4 bg-gray-50/50 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center">
<div className="mb-4 w-16 h-16 rounded-full bg-brand-gold/10 flex items-center justify-center border border-brand-gold/20">
<TrendingUp className="h-8 w-8 text-brand-gold" />
</div>
<h4 className="font-heading text-xl font-bold text-brand-burgundy mb-3">Volume Ready</h4>
<p className="text-brand-dark/80 leading-relaxed">
A manufacturing model designed for efficient turnaround times and rapid entry into new markets.
</p>
</div>
</div>
</div>
</div>
</section>
{/* Key Focus Areas for Future Growth */}
<section className="py-12 bg-gray-50 relative z-20">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="mb-12 text-center flex flex-col items-center">
<span className="text-sm font-bold uppercase tracking-widest text-brand-gold block mb-2">Strategic Expansion Map</span>
<h2 className="font-heading text-3xl md:text-4xl font-bold text-brand-burgundy mb-12">
Key Focus Areas for Future Growth
</h2>
<div className="grid grid-cols-12 gap-8 w-full">
<div className="col-span-12 md:col-span-6 lg:col-span-4 flex flex-col items-center p-6 bg-white/60 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center">
<div className="mb-4 w-16 h-16 rounded-full bg-brand-gold/10 flex items-center justify-center border border-brand-gold/20">
<Lightbulb className="h-8 w-8 text-brand-gold" />
</div>
<h4 className="font-heading text-xl font-bold text-brand-burgundy mb-3">Product Innovation</h4>
<p className="text-brand-dark/80 leading-relaxed text-base">
We continuously develop new and exciting frozen food products to meet evolving consumer preferences.
</p>
</div>
<div className="col-span-12 md:col-span-6 lg:col-span-4 flex flex-col items-center p-6 bg-white/60 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center">
<div className="mb-4 w-16 h-16 rounded-full bg-brand-gold/10 flex items-center justify-center border border-brand-gold/20">
<Globe className="h-8 w-8 text-brand-gold" />
</div>
<h4 className="font-heading text-xl font-bold text-brand-burgundy mb-3">Market Expansion</h4>
<p className="text-brand-dark/80 leading-relaxed text-base">
We are strengthening our presence in existing markets while exploring new opportunities across Africa and globally.
</p>
</div>
<div className="col-span-12 md:col-span-6 lg:col-span-4 flex flex-col items-center p-6 bg-white/60 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center">
<div className="mb-4 w-16 h-16 rounded-full bg-brand-gold/10 flex items-center justify-center border border-brand-gold/20">
<Handshake className="h-8 w-8 text-brand-gold" />
</div>
<h4 className="font-heading text-xl font-bold text-brand-burgundy mb-3">Strategic Partnerships</h4>
<p className="text-brand-dark/80 leading-relaxed text-base">
We build long term relationships with leading retailers, distributors, and foodservice providers.
</p>
</div>
<div className="col-span-12 md:col-span-6 lg:col-span-4 flex flex-col items-center p-6 bg-white/60 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center lg:col-start-3">
<div className="mb-4 w-16 h-16 rounded-full bg-brand-gold/10 flex items-center justify-center border border-brand-gold/20">
<Settings className="h-8 w-8 text-brand-gold" />
</div>
<h4 className="font-heading text-xl font-bold text-brand-burgundy mb-3">Operational Excellence</h4>
<p className="text-brand-dark/80 leading-relaxed text-base">
We invest in advanced equipment and processes to improve production efficiency and maintain high product quality.
</p>
</div>
<div className="col-span-12 md:col-span-6 lg:col-span-4 flex flex-col items-center p-6 bg-white/60 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center">
<div className="mb-4 w-16 h-16 rounded-full bg-brand-gold/10 flex items-center justify-center border border-brand-gold/20">
<Leaf className="h-8 w-8 text-brand-gold" />
</div>
<h4 className="font-heading text-xl font-bold text-brand-burgundy mb-3">Sustainability</h4>
<p className="text-brand-dark/80 leading-relaxed text-base">
We are committed to environmentally responsible practices and sustainable sourcing in line with global standards.
</p>
</div>
</div>
</div>
</div>
</section>
{/* Our Range */}
<section id="our-range" className="py-12 bg-[#800000]">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="mb-12 text-center flex flex-col items-center">
<span className="text-sm font-bold uppercase tracking-widest text-brand-gold block mb-2">Our Range</span>
<h2 className="font-heading text-3xl md:text-4xl font-bold text-white mb-4">
The Gold Standard of Frozen Snacks
</h2>
<p className="text-white/90 text-lg leading-relaxed max-w-3xl">
At Browns Foods, we are setting the benchmark for frozen convenience. Our product range is built on quality, consistency, and strong consumer appeal, designed to perform exceptionally well across retail and food service environments.
</p>
</div>
{/* The Corn Dog Collection */}
<div className="mb-12">
<div className="text-center mb-8">
<h3 className="font-heading text-2xl font-bold text-white mb-2">
The Corn Dog Collection®
</h3>
<p className="text-white/80 text-base max-w-2xl mx-auto">
Our signature range and category defining product line. Crafted for flavour, consistency, and strong shelf appeal.
</p>
</div>
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
{[
{ title: "Original Flavour", desc: "A timeless classic made with quality meat and a perfectly balanced, golden coating. Simple, satisfying, and always a favourite.", img: "https://i.ibb.co/9kD6vjL6/Range-Corndogs-Original.jpg" },
{ title: "Jalapeño Cheese", desc: "A bold combination of mild heat and rich, melted cheese, delivering a more indulgent and flavour packed experience.", img: "https://i.ibb.co/V03LrW1x/Range-Corndogs-Jalapeno.jpg" },
{ title: "Creamy Cheese", desc: "Smooth, indulgent cheese wrapped in a crisp, golden outer layer. Comforting, rich, and highly satisfying.", img: "https://i.ibb.co/mp8TjSB/Range-Corndogs-Cheese.jpg" },
{ title: "Mini Corn Dogs", desc: "Perfect for school lunch boxes and on the go snacking. These cocktail sized corn dogs are bite sized, fun, and easy to enjoy, with a crispy outside and juicy, flavourful centre that kids love and parents trust.", img: "https://i.ibb.co/FkJT6vX7/Range-Corndogs-Mini-1.jpg" }
].map((item, idx) => (
<div key={idx} className="group cursor-pointer flex flex-col items-center text-center p-4 bg-white border border-gray-200 hover:-translate-y-1 hover:shadow-md transition-all duration-300">
<div className="aspect-video w-full bg-gray-100 mb-4 overflow-hidden relative">
<img
src={item.img}
alt={item.title}
className="object-cover w-full h-full group-hover:scale-105 transition-transform duration-500"
/>
</div>
<h3 className="font-heading text-base font-bold text-brand-burgundy mb-2 uppercase tracking-wide">{item.title}</h3>
<p className="text-brand-dark/80 text-xs mb-2">{item.desc}</p>
</div>
))}
</div>
</div>
{/* Snack Pockets & French Toast */}
<div className="mb-12">
<div className="text-center mb-8">
<h3 className="font-heading text-2xl font-bold text-white mb-2">
Snack Pockets & French Toast
</h3>
<p className="text-white/80 text-base max-w-2xl mx-auto">
From savoury pockets to sweet french toast, our snacks are designed for convenience and delicious flavour for quick meals and everyday enjoyment.
</p>
</div>
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6">
{[
{ title: "BBQ Chicken", desc: "Tender chicken in a rich, smoky barbecue sauce, wrapped in a soft, golden crust. A hearty and satisfying option packed with bold flavour.", img: "https://i.ibb.co/ynsWT321/Range-BBQ-Chicken.jpg" },
{ title: "Cheeseburger", desc: "All the classic cheeseburger taste in a convenient pocket. Savoury beef, melted cheese, and signature flavour in every bite, making it a familiar favourite for all ages.", img: "https://i.ibb.co/PvKhyr01/Range-Cheeseburger.jpg" },
{ title: "Cinnamon French Toast", desc: "Soft, golden slices infused with warm cinnamon flavour. A comforting classic that delivers a homemade taste with convenience.", img: "https://i.ibb.co/rR50SkgL/Range-French-Slice.jpg" },
{ title: "French Toast Sticks", desc: "Perfectly portioned for dipping and sharing. Lightly crisp on the outside, soft on the inside, and coated with a delicious cinnamon finish, ideal for both kids and adults.", img: "https://i.ibb.co/YF0FxR0C/Range-French-Toast.jpg" }
].map((item, idx) => (
<div key={idx} className="group cursor-pointer flex flex-col items-center text-center p-4 bg-white border border-gray-200 hover:-translate-y-1 hover:shadow-md transition-all duration-300">
<div className="aspect-video w-full bg-gray-100 mb-4 overflow-hidden relative">
<img
src={item.img}
alt={item.title}
className="object-cover w-full h-full group-hover:scale-105 transition-transform duration-500"
/>
</div>
<h3 className="font-heading text-base font-bold text-brand-burgundy mb-2 uppercase tracking-wide">{item.title}</h3>
<p className="text-brand-dark/80 text-xs mb-2">{item.desc}</p>
</div>
))}
</div>
</div>
{/* Browns Crunch Co. */}
<div className="mb-12">
<div className="text-center mb-8">
<h3 className="font-heading text-2xl font-bold text-white mb-2">
Browns Crunch Co.™
</h3>
<p className="text-brand-gold font-bold text-base mb-2">Bold flavour. Clean ingredients. Smarter snacking.</p>
<p className="text-white/80 text-base max-w-3xl mx-auto">
A New Standard in Everyday Snacking. Browns Crunch Co.™ is built for modern consumers who want more from their snacks. From indulgent crunch to clean, functional options, every product is designed for quality, simplicity, and strong shelf appeal.
</p>
</div>
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
{[
{ title: "Sweet Potato Crisps", desc: "Naturally sweet, thin cut crisps made from real sweet potatoes, lightly seasoned and perfectly crisped. A simple, clean label snack that delivers satisfying crunch and natural flavour.", img: "https://i.ibb.co/tPCGKdRK/Pouch-with-sweet-202603232150.jpg" },
{ title: "Vegetable Mix", desc: "A colourful blend of beetroot, carrot, and sweet potato, baked to preserve natural taste and texture. Light, crisp, and visually striking, offering a better for you snacking alternative.", img: "https://i.ibb.co/KpnWmsBk/Baked-Vegetable-Crisps-202603232201.jpg" },
{ title: "Chickpea Protein Crunch", desc: "A plant based, high protein snack made from chickpea and grain blends. Boldly seasoned and perfectly crunchy, ideal for health conscious consumers looking for functional snacks.", img: "https://i.ibb.co/Fkx7BwKx/Chickpea-snacks-in-202603232216.jpg" },
{ title: "Peri-Peri Plantain Chips", desc: "Crispy plantain chips infused with a rich peri peri flavour. A bold balance of heat and savoury taste, inspired by global snacking trends.", img: "https://i.ibb.co/fVrn2LXG/Spicy-Plantain-Chips-202603232216.jpg" },
{ title: "Potato Sticks", desc: "Light, crunchy potato sticks with a classic flavour and satisfying texture. A familiar favourite made with consistent quality and scalable production.", img: "https://i.ibb.co/TMYSC4QK/Upcycled-sweet-potato-202603232226.jpg" },
{ title: "Freeze-Dried Fruit", desc: "Pure fruit, nothing added. Gently freeze dried to lock in natural sweetness, nutrients, and crunch. A clean, wholesome snack ideal for kids and health focused consumers.", img: "https://i.ibb.co/DPD3vsB0/Freeze-dried-fruit-spilling-202603232225.jpg" }
].map((item, idx) => (
<div key={idx} className="group cursor-pointer flex flex-col items-center text-center p-4 bg-white border border-gray-200 hover:-translate-y-1 hover:shadow-md transition-all duration-300">
<div className="aspect-video w-full bg-gray-100 mb-4 overflow-hidden relative">
<img
src={item.img}
alt={item.title}
className="object-cover w-full h-full group-hover:scale-105 transition-transform duration-500"
/>
</div>
<h3 className="font-heading text-base font-bold text-brand-burgundy mb-2 uppercase tracking-wide">{item.title}</h3>
<p className="text-brand-dark/80 text-xs mb-2">{item.desc}</p>
</div>
))}
</div>
</div>
</div>
</section>
{/* Our Partners */}
<section className="py-6 bg-white relative z-20">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="mb-6 text-center flex flex-col items-center">
<span className="text-sm font-bold uppercase tracking-widest text-brand-gold block mb-2">Trusted By</span>
<h2 className="font-heading text-2xl md:text-3xl font-bold text-brand-burgundy">
Our Partners
</h2>
</div>
<div className="flex flex-wrap justify-center items-center gap-4 md:gap-8 mb-6">
{[
{ name: 'Shoprite', url: 'https://www.shoprite.co.za', img: 'https://i.ibb.co/VWmdFpt5/Shoprite-Logo.png' },
{ name: 'Checkers', url: 'https://www.checkers.co.za', img: 'https://i.ibb.co/HTVV2nmc/Partner-2.jpg' },
{ name: 'Food Lovers Market', url: 'https://foodloversmarket.co.za', img: 'https://i.ibb.co/YFctdJGS/Partner-3.jpg' },
{ name: 'Walmart', url: 'https://www.walmart.com', img: 'https://i.ibb.co/Y7X3CYtj/Partner-5.jpg' },
{ name: 'Spar', url: 'https://www.spar.co.za', img: 'https://i.ibb.co/B2BFrdnq/Partner-6.jpg' },
{ name: 'Axon Media', url: 'https://axonmedia.co.za', img: 'https://i.ibb.co/vxfg3ZW7/AM-logo-on-202604011401-copy.jpg', subtitle: 'Official Media Partner' },
].map((partner) => (
<a
key={partner.name}
href={partner.url}
target="_blank"
rel="noopener noreferrer"
className="group flex flex-col items-center justify-center p-2 bg-gray-50/50 backdrop-blur-md border border-brand-burgundy/10 shadow-sm cursor-pointer transition-all duration-300 hover:border-brand-gold/30 hover:shadow-md w-24 sm:w-28 md:w-36"
>
<div className="h-8 sm:h-10 md:h-12 w-full flex items-center justify-center grayscale group-hover:grayscale-0 transition-all duration-300">
{partner.img ? (
<img src={partner.img} alt={partner.name} className="max-w-full max-h-full object-contain mix-blend-multiply" />
) : (
<span className="font-heading font-bold text-sm text-brand-dark/60 group-hover:text-brand-burgundy transition-colors">{partner.name}</span>
)}
</div>
{partner.subtitle && (
<span className="text-[8px] sm:text-[9px] font-bold uppercase tracking-wider text-brand-gold text-center mt-2">
{partner.subtitle}
</span>
)}
</a>
))}
</div>
</div>
</section>
{/* Why Browns Foods */}
<section id="why-browns" className="py-12 bg-gray-50 relative z-20">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="mb-12 text-center flex flex-col items-center">
<span className="text-sm font-bold uppercase tracking-widest text-brand-gold block mb-2">Investor Relations</span>
<h2 className="font-heading text-3xl md:text-4xl font-bold text-brand-burgundy mb-4">
Why Browns Foods®
</h2>
<p className="text-brand-dark/90 text-lg leading-relaxed mb-12">
An unparalleled investment opportunity in African convenience foods.
</p>
<div className="grid grid-cols-12 gap-8 w-full">
<div className="col-span-12 md:col-span-6 lg:col-span-4 flex flex-col items-center p-6 bg-white/60 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center">
<div className="mb-4 w-16 h-16 rounded-full bg-brand-gold/10 flex items-center justify-center border border-brand-gold/20">
<TrendingUp className="h-8 w-8 text-brand-gold" />
</div>
<h4 className="font-heading text-xl font-bold text-brand-burgundy mb-3">Proven Product-Market Fit</h4>
<p className="text-brand-dark/80 leading-relaxed text-base">
Sustained success across Africa's largest retail tiers.
</p>
</div>
<div className="col-span-12 md:col-span-6 lg:col-span-4 flex flex-col items-center p-6 bg-white/60 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center">
<div className="mb-4 w-16 h-16 rounded-full bg-brand-gold/10 flex items-center justify-center border border-brand-gold/20">
<ShieldCheck className="h-8 w-8 text-brand-gold" />
</div>
<h4 className="font-heading text-xl font-bold text-brand-burgundy mb-3">Category Leadership</h4>
<p className="text-brand-dark/80 leading-relaxed text-base">
The undisputed pioneer of the frozen corn dog niche in Africa.
</p>
</div>
<div className="col-span-12 md:col-span-6 lg:col-span-4 flex flex-col items-center p-6 bg-white/60 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center">
<div className="mb-4 w-16 h-16 rounded-full bg-brand-gold/10 flex items-center justify-center border border-brand-gold/20">
<Settings className="h-8 w-8 text-brand-gold" />
</div>
<h4 className="font-heading text-xl font-bold text-brand-burgundy mb-3">Scalable Infrastructure</h4>
<p className="text-brand-dark/80 leading-relaxed text-base">
Built for high-volume manufacturing and rapid market expansion.
</p>
</div>
<div className="col-span-12 md:col-span-6 lg:col-span-4 flex flex-col items-center p-6 bg-white/60 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center lg:col-start-3">
<div className="mb-4 w-16 h-16 rounded-full bg-brand-gold/10 flex items-center justify-center border border-brand-gold/20">
<CheckCircle2 className="h-8 w-8 text-brand-gold" />
</div>
<h4 className="font-heading text-xl font-bold text-brand-burgundy mb-3">Retail-Ready Portfolio</h4>
<p className="text-brand-dark/80 leading-relaxed text-base">
Products engineered for immediate shelf-impact and consumer pull-through.
</p>
</div>
<div className="col-span-12 md:col-span-6 lg:col-span-4 flex flex-col items-center p-6 bg-white/60 backdrop-blur-md border border-brand-burgundy/10 shadow-sm text-center">
<div className="mb-4 w-16 h-16 rounded-full bg-brand-gold/10 flex items-center justify-center border border-brand-gold/20">
<Globe className="h-8 w-8 text-brand-gold" />
</div>
<h4 className="font-heading text-xl font-bold text-brand-burgundy mb-3">Local Insight</h4>
<p className="text-brand-dark/80 leading-relaxed text-base">
Deep-rooted understanding of African consumer preferences and purchasing habits.
</p>
</div>
</div>
</div>
{/* Invest in Browns Form */}
<div className="max-w-6xl mx-auto mt-16">
<div className="mb-8 text-center flex flex-col items-center">
<h2 className="font-heading text-3xl md:text-4xl font-bold text-brand-burgundy uppercase tracking-wide">
Invest in Browns Foods
</h2>
</div>
<div className="grid grid-cols-1 md:grid-cols-2 gap-8 items-start">
{/* Left Column: Investment Case */}
<div className="p-6 md:p-8 bg-white/60 backdrop-blur-md border border-brand-burgundy/10 shadow-sm h-full flex flex-col justify-center">
<h3 className="font-heading text-2xl font-bold text-brand-burgundy mb-4">
Why Invest in Browns Foods?
</h3>
<p className="text-brand-dark/80 text-base leading-relaxed mb-6">
Browns Foods represents a unique opportunity to invest in the rapidly expanding African convenience food sector. As the first and only industrial-scale manufacturer of frozen corn dogs on the continent, we have established a dominant first-mover advantage and a proven product-market fit across all major retail tiers.
</p>
<p className="text-brand-dark/80 text-base leading-relaxed mb-6">
Our scalable infrastructure, strategic partnerships, and commitment to operational excellence position us for significant growth both domestically and internationally.
</p>
<ul className="space-y-3 text-brand-dark/80 text-base">
<li className="flex items-start gap-2">
<CheckCircle2 className="h-5 w-5 text-brand-gold shrink-0 mt-0.5" />
<span>Category Leadership & First-Mover Advantage</span>
</li>
<li className="flex items-start gap-2">
<CheckCircle2 className="h-5 w-5 text-brand-gold shrink-0 mt-0.5" />
<span>Proven Retail Success & Distribution Network</span>
</li>
<li className="flex items-start gap-2">
<CheckCircle2 className="h-5 w-5 text-brand-gold shrink-0 mt-0.5" />
<span>Scalable, High-Volume Manufacturing</span>
</li>
</ul>
</div>
{/* Right Column: Investor Inquiry Form */}
<div className="p-6 md:p-8 bg-white/60 backdrop-blur-md border border-brand-burgundy/10 shadow-sm">
<h3 className="font-heading text-2xl font-bold text-brand-burgundy mb-2">
Investor Inquiry
</h3>
<p className="text-brand-dark/60 text-sm mb-6">Request our Confidential Corporate Portfolio</p>
<InvestorForm />
</div>
</div>
</div>
</div>
</section>
{/* Media & Press */}
<section id="media" className="py-12 bg-white relative z-20">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="mb-12 text-center flex flex-col items-center">
<span className="text-sm font-bold uppercase tracking-widest text-brand-gold block mb-2">Watch Our Content</span>
<h2 className="font-heading text-3xl md:text-4xl font-bold text-brand-burgundy mb-6">
Media
</h2>
<p className="text-brand-dark/90 text-lg leading-relaxed max-w-3xl mb-12">
Explore our latest videos, campaigns, and behind-the-scenes content.
</p>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 md:gap-8 w-full">
{[
'soSMImWnp2U',
'Ui1BQKlJWUI',
'AZ901ZfOqh0',
'9hD-GzgWgqM',
'd7dWauKKtUQ',
'EWm1vxOA2RE'
].map((videoId) => (
<div key={videoId} className="flex flex-col bg-gray-50/50 backdrop-blur-md border border-brand-burgundy/10 shadow-sm overflow-hidden group">
<div className="aspect-video bg-gray-200 relative overflow-hidden w-full">
<iframe
src={`https://www.youtube.com/embed/${videoId}`}
title="YouTube video player"
frameBorder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerPolicy="strict-origin-when-cross-origin"
allowFullScreen
className="absolute inset-0 w-full h-full"
></iframe>
</div>
</div>
))}
</div>
</div>
</div>
</section>
{/* Contact Section */}
<section id="contact" className="py-12 bg-gray-50 relative z-20">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="mb-12 text-center flex flex-col items-center">
<span className="text-sm font-bold uppercase tracking-widest text-brand-gold block mb-2">Get In Touch</span>
<h2 className="font-heading text-3xl md:text-4xl font-bold text-brand-burgundy mb-4">
Contact Our HQ
</h2>
<p className="text-brand-dark/90 text-lg leading-relaxed max-w-2xl mx-auto">
Connect with our team for retail partnerships, distribution enquiries, or operational collaboration.
</p>
</div>
<div className="grid grid-cols-1 lg:grid-cols-2 gap-12 items-start">
{/* Contact Information */}
<div className="bg-white/60 backdrop-blur-md p-6 border border-brand-burgundy/10 shadow-sm">
<h3 className="font-heading text-2xl font-bold text-brand-burgundy mb-6 text-center">Contact Information</h3>
<div className="space-y-6">
<div className="flex items-start gap-4">
<div className="w-10 h-10 rounded-full bg-brand-gold/10 flex items-center justify-center shrink-0 border border-brand-gold/20">
<MapPin className="h-5 w-5 text-brand-gold" />
</div>
<div>
<h4 className="font-bold text-brand-burgundy mb-1">Office</h4>
<p className="text-brand-dark/80">Sandton, Johannesburg<br />South Africa</p>
</div>
</div>
<div className="flex items-start gap-4">
<div className="w-10 h-10 rounded-full bg-brand-gold/10 flex items-center justify-center shrink-0 border border-brand-gold/20">
<Mail className="h-5 w-5 text-brand-gold" />
</div>
<div>
<h4 className="font-bold text-brand-burgundy mb-1">Enquiries</h4>
<p className="text-brand-dark/80">
<a href="mailto:mabel@brownsfoods.co.za" className="hover:text-brand-gold transition-colors">mabel@brownsfoods.co.za</a><br />
<a href="mailto:wale@brownsfoods.co.za" className="hover:text-brand-gold transition-colors">wale@brownsfoods.co.za</a>
</p>
</div>
</div>
<div className="flex items-start gap-4">
<div className="w-10 h-10 rounded-full bg-brand-gold/10 flex items-center justify-center shrink-0 border border-brand-gold/20">
<Phone className="h-5 w-5 text-brand-gold" />
</div>
<div>
<h4 className="font-bold text-brand-burgundy mb-1">Phone & WhatsApp</h4>
<p className="text-brand-dark/80">
<a href="tel:+27682992611" className="hover:text-brand-gold transition-colors">+27 68 299 2611</a>
</p>
</div>
</div>
</div>
</div>
{/* Contact Form */}
<div className="bg-white/60 backdrop-blur-md p-6 border border-brand-burgundy/10 shadow-sm">
<h3 className="font-heading text-2xl font-bold text-brand-burgundy mb-6 text-center">Send a Message</h3>
<ContactForm />
</div>
</div>
</div>
</section>
</main>
{/* Footer */}
<footer className="bg-brand-burgundy text-white pt-12 pb-8 border-t-[6px] border-brand-gold">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="grid grid-cols-12 gap-8 mb-8">
{/* Brand Column */}
<div className="col-span-12 lg:col-span-4">
<div className="flex items-center gap-2 mb-6">
<div className="w-8 h-8 bg-white flex items-center justify-center rounded-sm transform rotate-45">
<span className="text-brand-burgundy font-heading font-bold text-lg transform -rotate-45">B</span>
</div>
<span className="font-heading font-bold text-2xl tracking-tight text-white">Browns Foods</span>
</div>
<p className="text-white/90 text-sm leading-relaxed mb-6 max-w-sm">
Scaling the future of African convenience foods. Delivering premium, accessible, and consistent food solutions globally.
</p>
<div className="flex space-x-4">
<a href="#" className="text-white/80 hover:text-brand-gold transition-colors">
<span className="sr-only">Facebook</span>
<Facebook className="h-5 w-5" />
</a>
<a href="#" className="text-white/80 hover:text-brand-gold transition-colors">
<span className="sr-only">Twitter</span>
<Twitter className="h-5 w-5" />
</a>
<a href="#" className="text-white/80 hover:text-brand-gold transition-colors">
<span className="sr-only">LinkedIn</span>
<Linkedin className="h-5 w-5" />
</a>
<a href="#" className="text-white/80 hover:text-brand-gold transition-colors">
<span className="sr-only">Instagram</span>
<Instagram className="h-5 w-5" />
</a>
</div>
</div>
{/* Quick Links */}
<div className="col-span-12 sm:col-span-6 lg:col-span-2 lg:col-start-6">
<h4 className="font-heading font-bold text-lg mb-4 text-brand-gold">Company</h4>
<ul className="space-y-3">
{['About Us', 'Our Range', 'Media', 'Investors', 'Contact'].map((link) => (
<li key={link}>
<Link href={`#${link.toLowerCase().replace(' ', '-')}`} className="text-white/80 hover:text-white text-sm transition-colors">
{link}
</Link>
</li>
))}
</ul>
</div>
{/* Legal */}
<div className="col-span-12 sm:col-span-6 lg:col-span-2">
<h4 className="font-heading font-bold text-lg mb-4 text-brand-gold">Legal</h4>
<ul className="space-y-3">
{['Privacy Policy', 'Terms of Service', 'Cookie Policy', 'Compliance'].map((link) => (
<li key={link}>
<Link href="#" className="text-white/80 hover:text-white text-sm transition-colors">
{link}
</Link>
</li>
))}
</ul>
</div>
{/* Contact */}
<div className="col-span-12 lg:col-span-3">
<h4 className="font-heading font-bold text-lg mb-4 text-brand-gold">Contact Us</h4>
<ul className="space-y-4">
<li className="flex items-start">
<MapPin className="h-5 w-5 text-brand-gold mr-3 flex-shrink-0 mt-0.5" />
<span className="text-white/80 text-sm">123 Industrial Park Ave,<br />Johannesburg, South Africa</span>
</li>
<li className="flex items-center">
<Phone className="h-5 w-5 text-brand-gold mr-3 flex-shrink-0" />
<span className="text-white/80 text-sm">+27 (0) 11 555 0198</span>
</li>
<li className="flex items-center">
<Mail className="h-5 w-5 text-brand-gold mr-3 flex-shrink-0" />
<span className="text-white/80 text-sm">inquiries@brownsfoods.co.za</span>
</li>
</ul>
</div>
</div>
<div className="pt-8 border-t border-white/20 flex flex-col md:flex-row justify-between items-center gap-4">
<p className="text-white/70 text-xs text-center md:text-left">
© {new Date().getFullYear()} Browns Foods®. All rights reserved.
</p>
<p className="text-white/70 text-xs flex items-center">
Designed with uncompromising quality. Powered by <a href="https://axonmedia.co.za" target="_blank" rel="noopener noreferrer" className="hover:underline ml-1"><span className="text-white">Axon</span><span className="text-blue-500">Media</span></a>.
</p>
</div>
</div>
</footer>
</div>
);
}