Files
fc654f07-c1fd-4575-a366-c64…/src/app/about/page.tsx
2026-03-04 18:39:50 +00:00

175 lines
6.4 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { CheckCircle, Star, Wrench } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="medium"
sizing="mediumLargeSizeMediumTitles"
background="aurora"
cardStyle="layered-gradient"
primaryButtonStyle="flat"
secondaryButtonStyle="solid"
headingFontWeight="semibold"
>
{/* Navigation */}
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="USA Automotive Service"
navItems={[
{ name: "Services", id: "/services" },
{ name: "Why Us", id: "/about" },
{ name: "Reviews", id: "#reviews" },
{ name: "Contact", id: "#" },
{ name: "Call Now", id: "tel:+1-773-238-1333" },
]}
/>
</div>
{/* About Us Section */}
<div id="about" data-section="about">
<TestimonialAboutCard
tag="About USA Automotive"
tagIcon={CheckCircle}
tagAnimation="slide-up"
title="Your Trusted Neighborhood Mechanic Since Day One"
description="11044 S Western Ave, Chicago, IL 60643"
subdescription="Expert mechanics with decades of combined experience"
icon={Wrench}
imageSrc="http://img.b2bpic.net/free-photo/repairmen-fix-car-together_482257-102916.jpg"
imageAlt="Professional auto repair technicians at work"
mediaAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
{/* Customer Testimonials Section */}
<div id="reviews" data-section="reviews">
<TestimonialCardTwelve
testimonials={[
{
id: "1",
name: "Danuta Stopka",
imageSrc:
"http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg",
imageAlt: "Danuta Stopka - Happy Customer",
},
{
id: "2",
name: "Michael Rodriguez",
imageSrc:
"http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg",
imageAlt: "Michael Rodriguez - Happy Customer",
},
{
id: "3",
name: "Sarah Johnson",
imageSrc:
"http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg",
imageAlt: "Sarah Johnson - Happy Customer",
},
{
id: "4",
name: "James Wilson",
imageSrc:
"http://img.b2bpic.net/free-photo/smiling-man-sitting-cafe-table-gesturing_1262-1141.jpg",
imageAlt: "James Wilson - Happy Customer",
},
]}
cardTitle="Trusted by Thousands of Chicago Drivers"
cardTag="See what our customers say"
cardTagIcon={Star}
cardAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
{/* Why Choose Us Section */}
<div id="why-choose" data-section="why-choose">
<TestimonialAboutCard
tag="Why Choose USA Automotive"
tagIcon={CheckCircle}
tagAnimation="slide-up"
title="Honest Pricing. Expert Service. Local Trust."
description="Professional technicians you can rely on"
subdescription="Serving Chicago since day one"
icon={Wrench}
imageSrc="http://img.b2bpic.net/free-photo/repairmen-fix-car-together_482257-102916.jpg"
imageAlt="Professional automotive service team"
mediaAnimation="slide-up"
useInvertedBackground={false}
/>
</div>
{/* Footer */}
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="USA Automotive"
columns={[
{
title: "Services",
items: [
{ label: "Brake Services", href: "/services" },
{ label: "Engine Repair", href: "/services" },
{ label: "Air Conditioning", href: "/services" },
{ label: "Wheel Alignment", href: "/services" },
],
},
{
title: "Company",
items: [
{ label: "About Us", href: "/about" },
{ label: "Our Team", href: "/about" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
],
},
{
title: "Contact",
items: [
{ label: "Phone: +1 773-238-1333", href: "tel:+1-773-238-1333" },
{ label: "Email: info@usaauto.com", href: "mailto:info@usaauto.com" },
{
label: "Address: 11044 S Western Ave",
href: "https://maps.google.com/?q=11044+S+Western+Ave+Chicago+IL+60643",
},
{
label: "Get Directions",
href: "https://maps.google.com/?q=11044+S+Western+Ave+Chicago+IL+60643",
},
],
},
{
title: "Hours",
items: [
{ label: "Mon - Fri: 8:00 AM - 5:30 PM", href: "#" },
{ label: "Saturday: Closed", href: "#" },
{ label: "Sunday: Closed", href: "#" },
{ label: "Emergency: Call Anytime", href: "tel:+1-773-238-1333" },
],
},
{
title: "Legal",
items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Accessibility", href: "#" },
],
},
]}
copyrightText="© 2025 USA Automotive Service. All rights reserved. Professional auto repair in Chicago, IL."
/>
</div>
</ThemeProvider>
);
}