Files
2bb6748b-81d0-458c-99f0-67c…/src/app/about/page.tsx
2026-03-06 19:01:21 +00:00

189 lines
6.2 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import TextAbout from "@/components/sections/about/TextAbout";
import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive";
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
import ContactText from "@/components/sections/contact/ContactText";
import FooterCard from "@/components/sections/footer/FooterCard";
import Link from "next/link";
import { Zap, Shield, Users, ShoppingCart, MapPin, Star, Facebook, Instagram, Twitter, Linkedin } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="largeSmallSizeLargeTitles"
background="grid"
cardStyle="gradient-radial"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "home" },
{ name: "Shop", id: "products" },
{ name: "About", id: "about" },
{ name: "Blog", id: "blog" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Shop Now", href: "products" }}
brandName="DriveDish"
/>
</div>
<div id="about" data-section="about">
<TextAbout
tag="About Us"
title="Revolutionizing How You Eat on the Road. Born in Colorado, crafted for adventure seekers everywhere."
useInvertedBackground={true}
buttons={[
{
text: "Explore Our Story",
href: "/about"
}
]}
/>
</div>
<div id="features" data-section="features">
<FeatureCardTwentyFive
features={[
{
title: "Foldable Design",
description: "Compact and space-saving when not in use. Unfolds to full size for comfortable eating.",
icon: Zap,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-vector/car-background-design_1300-61.jpg?_wi=2",
imageAlt: "Foldable design demonstration"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/close-up-fuel-level-gauge-vehicle_23-2150163675.jpg?_wi=4",
imageAlt: "Plate in use"
}
]
},
{
title: "Spill-Resistant",
description: "Advanced silicone engineering prevents spills and messes. Keep your car clean while you eat.",
icon: Shield,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/friends-having-fun-party-covid_23-2149316348.jpg?_wi=2",
imageAlt: "Spill-resistant technology"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/vegetarian-salad-with-berries-measuring-tape_23-2148035076.jpg?_wi=4",
imageAlt: "Bowl in action"
}
]
}
]}
animationType="depth-3d"
title="Why Choose DriveDish"
description="Experience the innovation that transforms your car into a comfortable dining space."
tag="Features"
textboxLayout="default"
useInvertedBackground={true}
buttons={[
{
text: "Discover More",
href: "/about"
}
]}
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardThree
metrics={[
{
id: "1",
icon: Users,
title: "Happy Customers",
value: "15,000+"
},
{
id: "2",
icon: ShoppingCart,
title: "Products Sold",
value: "45,000+"
},
{
id: "3",
icon: MapPin,
title: "Colorado Based",
value: "Est. 2023"
},
{
id: "4",
icon: Star,
title: "Customer Rating",
value: "4.9/5"
}
]}
animationType="slide-up"
title="DriveDish by the Numbers"
description="Our impact on automotive dining culture across North America."
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Ready to transform your road dining experience? Get in touch with our team or shop our complete collection of innovative automotive dining solutions."
animationType="entrance-slide"
buttons={[
{
text: "Contact Us",
href: "/contact"
},
{
text: "Shop Now",
href: "/shop"
}
]}
background={{ variant: "grid" }}
useInvertedBackground={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="DriveDish"
copyrightText="© 2025 DriveDish | Automotive Dining Solutions. All rights reserved."
socialLinks={[
{
icon: Facebook,
href: "https://facebook.com/drivedish",
ariaLabel: "DriveDish on Facebook"
},
{
icon: Instagram,
href: "https://instagram.com/drivedish",
ariaLabel: "DriveDish on Instagram"
},
{
icon: Twitter,
href: "https://twitter.com/drivedish",
ariaLabel: "DriveDish on Twitter"
},
{
icon: Linkedin,
href: "https://linkedin.com/company/drivedish",
ariaLabel: "DriveDish on LinkedIn"
}
]}
/>
</div>
</ThemeProvider>
);
}