4 Commits

Author SHA1 Message Date
2cd0774d6a Update src/app/page.tsx 2026-03-04 23:12:55 +00:00
a2f8022cd9 Update src/app/layout.tsx 2026-03-04 23:12:54 +00:00
a5e94b09ae Merge version_6 into main
Merge version_6 into main
2026-03-04 22:50:28 +00:00
30d6cbaa85 Update src/app/page.tsx 2026-03-04 22:50:24 +00:00
2 changed files with 10 additions and 33 deletions

View File

@@ -1418,4 +1418,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -6,7 +6,6 @@ import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Star } from "lucide-react";
@@ -30,7 +29,6 @@ export default function LandingPage() {
navItems={[
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
]}
button={{ text: "Call Now", href: "tel:605-642-8666" }}
animateOnLoad={true}
@@ -48,7 +46,7 @@ export default function LandingPage() {
showBlur={true}
showDimOverlay={true}
buttons={[
{ text: "Schedule Service", href: "#contact" },
{ text: "Schedule Service", href: "#services" },
{ text: "Call 605-642-8666", href: "tel:605-642-8666" },
]}
/>
@@ -62,7 +60,7 @@ export default function LandingPage() {
]}
useInvertedBackground={false}
showBorder={true}
buttons={[{ text: "Visit Us Today", href: "#contact" }]}
buttons={[{ text: "Visit Us Today", href: "#services" }]}
/>
</div>
@@ -96,14 +94,14 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<SocialProofOne
title="What Our Customers Say"
description="Trusted by Spearfish residents with a 4.9-star rating"
title="Trusted with a 4.9-Star Rating"
description="Google reviews from our satisfied customers"
tag="Customer Reviews"
tagIcon={Star}
textboxLayout="default"
useInvertedBackground={false}
names={[
"Tosh Johnson - Honest and Professional Service", "Sarah Johnson - Family That Cares", "David Martinez - Emergency Repair Heroes", "Jennifer Lee - Five Stars Every Time"
"Google"
]}
speed={40}
showCard={true}
@@ -116,7 +114,7 @@ export default function LandingPage() {
description="By the numbers - why families trust us with their vehicles"
tag="Our Achievement"
metrics={[
{ id: "1", value: "4.9★", description: "Customer Rating" },
{ id: "1", value: "4.9★", description: "Google Rating" },
{ id: "2", value: "143 W Illinois", description: "Spearfish Location" },
{ id: "3", value: "Family Owned", description: "Local Business" },
{ id: "4", value: "605-642-8666", description: "Call Us Anytime" },
@@ -128,36 +126,15 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
title="Get in Touch"
description="Have questions or ready to schedule your service? Contact us today. We're here to help keep your vehicle in top shape."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email", required: true },
{ name: "phone", type: "tel", placeholder: "605-642-8666", required: false },
{ name: "vehicle", type: "text", placeholder: "Vehicle Make & Model", required: false },
]}
textarea={{ name: "message", placeholder: "Describe your service needs...", rows: 5, required: true }}
useInvertedBackground={false}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUzJAIJxnBYwFIBspQ1lc7bdVs/uploaded-1772663039208-htbwevc6.jpg?_wi=2"
imageAlt="Professional mechanic at work"
mediaAnimation="slide-up"
mediaPosition="right"
buttonText="Schedule Service"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
logoText="Cornerstone Auto Repair"
copyrightText="© 2025 Cornerstone Auto Repair. Family-owned and operated in Spearfish, SD."
copyrightText="© 2025 Cornerstone Auto Repair. Closed on Saturday."
columns={[
{
title: "Quick Links", items: [
{ label: "Services", href: "#services" },
{ label: "About Us", href: "#about" },
{ label: "Contact", href: "#contact" },
],
},
{
@@ -170,7 +147,7 @@ export default function LandingPage() {
{
title: "Hours", items: [
{ label: "Monday - Friday: 8am - 5pm", href: "#" },
{ label: "Saturday: 9am - 3pm", href: "#" },
{ label: "Saturday: Closed", href: "#" },
{ label: "Sunday: Closed", href: "#" },
],
},
@@ -179,4 +156,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}