8 Commits

Author SHA1 Message Date
e6129c48a4 Merge version_3 into main
Merge version_3 into main
2026-03-11 21:00:10 +00:00
4035047761 Update src/app/services/page.tsx 2026-03-11 21:00:06 +00:00
b78a2b209a Update src/app/reviews/page.tsx 2026-03-11 21:00:06 +00:00
1eca67f30d Update src/app/page.tsx 2026-03-11 21:00:06 +00:00
ae358c3107 Update src/app/contact/page.tsx 2026-03-11 21:00:05 +00:00
7bfb568ec6 Update src/app/about/page.tsx 2026-03-11 21:00:05 +00:00
c33f628acc Merge version_2 into main
Merge version_2 into main
2026-03-11 12:27:15 +00:00
fee2dbb2e9 Merge version_2 into main
Merge version_2 into main
2026-03-11 12:26:49 +00:00
5 changed files with 9 additions and 9 deletions

View File

@@ -81,7 +81,7 @@ export default function AboutPage() {
imageAlt="Experienced mechanic working professional tools" imageAlt="Experienced mechanic working professional tools"
buttons={[ buttons={[
{ {
text: "Request Service", href: "/contact"}, text: "Request Service", href: "#contact-cta"},
]} ]}
useInvertedBackground={false} useInvertedBackground={false}
/> />
@@ -138,4 +138,4 @@ export default function AboutPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -75,7 +75,7 @@ export default function ContactPage() {
description="Bradenton's Trusted Auto Repair Shop. Honest, reliable automotive repair and maintenance you can trust." description="Bradenton's Trusted Auto Repair Shop. Honest, reliable automotive repair and maintenance you can trust."
buttons={[ buttons={[
{ text: "Call Now", href: "tel:+19417491090" }, { text: "Call Now", href: "tel:+19417491090" },
{ text: "Get a Free Quote", href: "#contact" }, { text: "Get a Free Quote", href: "#contact-cta" },
]} ]}
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}
imageSrc="https://images.unsplash.com/photo-1487754180144-351b8e6f60db?w=800&q=80&_wi=2" imageSrc="https://images.unsplash.com/photo-1487754180144-351b8e6f60db?w=800&q=80&_wi=2"
@@ -110,4 +110,4 @@ export default function ContactPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -81,7 +81,7 @@ export default function HomePage() {
{ {
text: "Call Now", href: "tel:+19417491090"}, text: "Call Now", href: "tel:+19417491090"},
{ {
text: "Get a Free Quote", href: "#contact"}, text: "Get a Free Quote", href: "#contact-cta"},
]} ]}
background={{ background={{
variant: "sparkles-gradient"}} variant: "sparkles-gradient"}}
@@ -119,7 +119,7 @@ export default function HomePage() {
imageAlt="experienced mechanic working professional tools" imageAlt="experienced mechanic working professional tools"
buttons={[ buttons={[
{ {
text: "Request Service", href: "#contact"}, text: "Request Service", href: "#contact-cta"},
]} ]}
useInvertedBackground={false} useInvertedBackground={false}
buttonAnimation="opacity" buttonAnimation="opacity"
@@ -180,4 +180,4 @@ export default function HomePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -129,4 +129,4 @@ export default function ReviewsPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -137,4 +137,4 @@ export default function ServicesPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }