Files
2f8a0261-3908-47fb-a807-ec0…/src/app/about/page.tsx
2026-03-02 18:22:48 +00:00

171 lines
6.4 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen";
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import Link from "next/link";
import { Star } from "lucide-react";
const navItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Pricing", id: "/pricing" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
];
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="small"
sizing="mediumLargeSizeMediumTitles"
background="fluid"
cardStyle="gradient-bordered"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={navItems}
brandName="Elite Auto Detailing"
bottomLeftText="Professional Auto Detailing"
bottomRightText="(###) ###-#### or text us"
/>
</div>
<div id="about-metrics" data-section="about-metrics">
<MetricCardFourteen
title="Elite Auto Detailing & Mobile Services LLC is dedicated to delivering premium auto detailing solutions with unmatched professionalism and attention to detail."
tag="Our Commitment"
tagAnimation="slide-up"
metrics={[
{
id: "1",
value: "500+",
description:
"Satisfied customers who have experienced our professional detailing services and transformed their vehicles.",
},
{
id: "2",
value: "15+",
description:
"Years of combined experience in premium auto detailing, paint protection, and specialty vehicle care.",
},
{
id: "3",
value: "100%",
description:
"Satisfaction guarantee on all services. If you're not completely happy, we make it right.",
},
]}
metricsAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="about-testimonials" data-section="about-testimonials">
<TestimonialCardTwelve
testimonials={[
{
id: "1",
name: "Sarah Johnson",
imageSrc:
"http://img.b2bpic.net/free-photo/smiling-middle-aged-attractive-woman-showing-thumb-up-outdoors_1262-12526.jpg?_wi=3",
imageAlt: "Sarah Johnson",
},
{
id: "2",
name: "Michael Chen",
imageSrc:
"http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg?_wi=2",
imageAlt: "Michael Chen",
},
{
id: "3",
name: "Emily Rodriguez",
imageSrc:
"http://img.b2bpic.net/free-photo/happy-businesswoman-smiling-looking-camera-successful-confident-grey-haired-manager-sitting-office-room-workplace-business-management-concept_74855-7343.jpg?_wi=2",
imageAlt: "Emily Rodriguez",
},
{
id: "4",
name: "David Kim",
imageSrc:
"http://img.b2bpic.net/free-photo/smiling-businessman-face-portrait-wearing-suit_53876-148135.jpg?_wi=2",
imageAlt: "David Kim",
},
{
id: "5",
name: "Jessica Martinez",
imageSrc:
"http://img.b2bpic.net/free-photo/smiling-middle-aged-attractive-woman-showing-thumb-up-outdoors_1262-12526.jpg?_wi=4",
imageAlt: "Jessica Martinez",
},
{
id: "6",
name: "Robert Thompson",
imageSrc:
"http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg?_wi=2",
imageAlt: "Robert Thompson",
},
]}
cardTitle="What Our Customers Say About Elite Auto Detailing Services"
cardTag="Customer Testimonials"
cardTagIcon={Star}
cardAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/luxury-car-interior-brown-black-colors_181624-31177.jpg?_wi=5"
imageAlt="Elite Auto Detailing showcase"
logoText="Elite Auto Detailing & Mobile Services LLC"
copyrightText="© 2025 Elite Auto Detailing & Mobile Services LLC. All rights reserved."
columns={[
{
title: "Services",
items: [
{ label: "Interior Detailing", href: "/services" },
{ label: "Exterior Detailing", href: "/services" },
{ label: "Paint Correction", href: "/services" },
{ label: "Ceramic Coating", href: "/services" },
{ label: "Fleet Detailing", href: "/services" },
],
},
{
title: "Company",
items: [
{ label: "Home", href: "/" },
{ label: "About Us", href: "/about" },
{ label: "Gallery", href: "/gallery" },
{ label: "Pricing", href: "/pricing" },
{ label: "Contact", href: "#contact" },
],
},
{
title: "Contact",
items: [
{ label: "Call: (###) ###-####", href: "tel:+1-###-###-####" },
{ label: "Text Us", href: "sms:+1-###-###-####" },
{
label: "Email: info@eliteautodetailing.com",
href: "mailto:info@eliteautodetailing.com",
},
{ label: "Service Area: [City/Region]", href: "#" },
{ label: "Hours: Mon-Sun, By Appointment", href: "#" },
],
},
]}
/>
</div>
</ThemeProvider>
);
}