Files
389b8a02-2de8-4a08-95eb-963…/src/app/about/page.tsx
2026-03-05 17:23:59 +00:00

128 lines
6.8 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree";
import TestimonialCardTen from "@/components/sections/testimonial/TestimonialCardTen";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
export default function AboutPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Gallery", id: "/gallery" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Services", items: [
{ label: "Exterior Detailing", href: "/services" },
{ label: "Interior Detailing", href: "/services" },
{ label: "Ceramic Coating", href: "/services" },
{ label: "Full Packages", href: "/services" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Gallery", href: "/gallery" },
{ label: "Contact", href: "/contact" },
{ label: "Book Now", href: "/contact" },
],
},
{
title: "Connect", items: [
{ label: "Phone: (555) 123-4567", href: "#" },
{ label: "Email: info@primedetailz.com", href: "#" },
{ label: "Follow Us", href: "#" },
{ label: "Service Area", href: "#" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="mediumSmall"
sizing="largeSizeMediumTitles"
background="floatingGradient"
cardStyle="soft-shadow"
primaryButtonStyle="double-inset"
secondaryButtonStyle="solid"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={navItems}
brandName="Prime Detailz"
button={{ text: "Book Now", href: "/contact" }}
/>
</div>
<div id="about-values" data-section="about-values">
<FeatureCardThree
title="Our Core Values"
description="What drives us to deliver premium detailing excellence every single day"
tag="About Us"
features={[
{
id: "01", title: "Quality First", description: "We never compromise on quality. Premium products, meticulous techniques, and rigorous standards on every vehicle we detail.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193588.jpg?_wi=2", imageAlt: "Quality focus"},
{
id: "02", title: "Customer Convenience", description: "Mobile service means we come to you. Your time is valuable, and we respect that by bringing premium care directly to your location.", imageSrc: "http://img.b2bpic.net/free-photo/courier-delivering-groceries-home_23-2149738007.jpg?_wi=2", imageAlt: "Convenience"},
{
id: "03", title: "Professional Excellence", description: "Our team is trained, certified, and passionate about automotive care. Experience matters, and it shows in every detail.", imageSrc: "http://img.b2bpic.net/free-photo/repairing-tools_1417-1788.jpg?_wi=2", imageAlt: "Professional team"},
{
id: "04", title: "Trust & Transparency", description: "Clear pricing, no hidden fees, and honest communication. We build lasting relationships based on trust and reliability.", imageSrc: "http://img.b2bpic.net/free-photo/hands-disinfection-illness-prevention-due-covid19-pandemic_637285-11036.jpg?_wi=2", imageAlt: "Trust"},
]}
textboxLayout="default"
animationType="slide-up"
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
/>
</div>
<div id="about-testimonials" data-section="about-testimonials">
<TestimonialCardTen
title="Why Car Owners Love Prime Detailz"
description="Real experiences from satisfied customers across the region"
tag="Customer Stories"
testimonials={[
{
id: "1", title: "Premium Service at Your Doorstep", quote: "Prime Detailz brings luxury car care directly to me. No hassle, no wait times, just professional results. This is how detailing should be.", name: "Michael Torres", role: "Jaguar Owner", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=4", imageAlt: "Michael Torres"},
{
id: "2", title: "Attention to Detail is Unmatched", quote: "The team's dedication to perfection is remarkable. Every crevice, every surface - they treat my car like it's their own. Worth every penny.", name: "Amanda Rodriguez", role: "Range Rover Owner", imageSrc: "http://img.b2bpic.net/free-photo/close-up-positive-businesswoman_1098-3531.jpg?_wi=3", imageAlt: "Amanda Rodriguez"},
{
id: "3", title: "Professional and Reliable Partners", quote: "I've booked Prime Detailz several times. Consistent quality, professional demeanor, and they always show up on time. Highly trustworthy.", name: "James Mitchell", role: "Porsche Owner", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=5", imageAlt: "James Mitchell"},
]}
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Join Our Family"
title="Experience Prime Detailz Today"
description="Discover why hundreds of car owners trust us with their vehicles. Schedule your premium detailing appointment now."
inputPlaceholder="Enter your email"
buttonText="Get Started"
termsText="We'll send you booking details and service information. Privacy guaranteed."
background={{ variant: "rotated-rays-animated-grid" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={footerColumns}
copyrightText="© 2025 Prime Detailz | Premium Mobile Detailing"
/>
</div>
</ThemeProvider>
);
}