Compare commits
16 Commits
version_3
...
version_10
| Author | SHA1 | Date | |
|---|---|---|---|
| 41f06a3e90 | |||
| 8fc7205bb8 | |||
| ca8579bb4e | |||
| 804c856bb5 | |||
| 3732ec546f | |||
| 5590f92a65 | |||
| 01719e2a44 | |||
| 928e194908 | |||
| 2cd0774d6a | |||
| a2f8022cd9 | |||
| a5e94b09ae | |||
| 30d6cbaa85 | |||
| f5834cfa7f | |||
| cb3932c961 | |||
| b6b482e2b8 | |||
| a73f3dee3a |
@@ -1,53 +1,19 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Manrope } from "next/font/google";
|
|
||||||
import { DM_Sans } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const manrope = Manrope({
|
|
||||||
variable: "--font-manrope", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
|
||||||
variable: "--font-dm-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Cornerstone Auto Repair | Spearfish, SD", description: "Family-owned auto repair shop in Spearfish, SD. Expert service, 4.9-star rating. Call 605-642-8666 for honest, professional car repairs.", keywords: "auto repair, car repair, mechanic, Spearfish SD, automotive service, brake service, engine repair", metadataBase: new URL("https://cornerstoneautorepair.com"),
|
title: "Cornerstone Auto Repair", description: "Expert auto repair services in Spearfish, SD. Family-owned and operated since day one."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://cornerstoneautorepair.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Cornerstone Auto Repair | Spearfish, SD", description: "Family-owned auto repair with 4.9-star rating. Professional service you can trust.", url: "https://cornerstoneautorepair.com", siteName: "Cornerstone Auto Repair", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUzJAIJxnBYwFIBspQ1lc7bdVs/uploaded-1772663039208-htbwevc6.jpg", alt: "Cornerstone Auto Repair"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Cornerstone Auto Repair | Spearfish, SD", description: "Family-owned auto repair with 4.9-star rating.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUzJAIJxnBYwFIBspQ1lc7bdVs/uploaded-1772663039208-htbwevc6.jpg"],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body>
|
||||||
<body
|
{children}
|
||||||
className={`${manrope.variable} ${dmSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1415,7 +1381,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,8 +5,6 @@ import HeroOverlay from "@/components/sections/hero/HeroOverlay";
|
|||||||
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
|
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
|
||||||
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
|
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
|
||||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
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 FooterBase from "@/components/sections/footer/FooterBase";
|
||||||
import { Star } from "lucide-react";
|
import { Star } from "lucide-react";
|
||||||
|
|
||||||
@@ -30,7 +28,6 @@ export default function LandingPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "services" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Contact", id: "contact" },
|
|
||||||
]}
|
]}
|
||||||
button={{ text: "Call Now", href: "tel:605-642-8666" }}
|
button={{ text: "Call Now", href: "tel:605-642-8666" }}
|
||||||
animateOnLoad={true}
|
animateOnLoad={true}
|
||||||
@@ -48,7 +45,6 @@ export default function LandingPage() {
|
|||||||
showBlur={true}
|
showBlur={true}
|
||||||
showDimOverlay={true}
|
showDimOverlay={true}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Schedule Service", href: "#contact" },
|
|
||||||
{ text: "Call 605-642-8666", href: "tel:605-642-8666" },
|
{ text: "Call 605-642-8666", href: "tel:605-642-8666" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -62,7 +58,7 @@ export default function LandingPage() {
|
|||||||
]}
|
]}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
showBorder={true}
|
showBorder={true}
|
||||||
buttons={[{ text: "Visit Us Today", href: "#contact" }]}
|
buttons={[{ text: "Call 605-642-8666", href: "tel:605-642-8666" }]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -96,68 +92,29 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<SocialProofOne
|
<SocialProofOne
|
||||||
title="What Our Customers Say"
|
title="Trusted with a 4.9-Star Rating"
|
||||||
description="Trusted by Spearfish residents with a 4.9-star rating"
|
description="Google reviews from our satisfied customers"
|
||||||
tag="Customer Reviews"
|
tag="Customer Reviews"
|
||||||
tagIcon={Star}
|
tagIcon={Star}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
names={[
|
names={[
|
||||||
"Tosh Johnson - Honest and Professional Service", "Sarah Johnson - Family That Cares", "David Martinez - Emergency Repair Heroes", "Jennifer Lee - Five Stars Every Time"
|
"★★★★★", "★★★★★", "★★★★★", "★★★★★", "★★★★★"
|
||||||
]}
|
]}
|
||||||
speed={40}
|
speed={40}
|
||||||
showCard={true}
|
showCard={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="metrics" data-section="metrics">
|
|
||||||
<MetricCardTwo
|
|
||||||
title="Why Choose Cornerstone"
|
|
||||||
description="By the numbers - why families trust us with their vehicles"
|
|
||||||
tag="Our Achievement"
|
|
||||||
metrics={[
|
|
||||||
{ id: "1", value: "4.9★", description: "Customer 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" },
|
|
||||||
]}
|
|
||||||
gridVariant="uniform-all-items-equal"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={true}
|
|
||||||
animationType="slide-up"
|
|
||||||
/>
|
|
||||||
</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">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBase
|
<FooterBase
|
||||||
logoText="Cornerstone Auto Repair"
|
logoText="Cornerstone Auto Repair"
|
||||||
copyrightText="© 2025 Cornerstone Auto Repair. Family-owned and operated in Spearfish, SD."
|
copyrightText="© 2025 Cornerstone Auto Repair."
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Quick Links", items: [
|
title: "Quick Links", items: [
|
||||||
{ label: "Services", href: "#services" },
|
{ label: "Services", href: "#services" },
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "About Us", href: "#about" },
|
||||||
{ label: "Contact", href: "#contact" },
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -169,8 +126,8 @@ export default function LandingPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Hours", items: [
|
title: "Hours", items: [
|
||||||
{ label: "Monday - Friday: 8am - 5pm", href: "#" },
|
{ label: "Mon-Fri: 8am - 5pm", href: "#" },
|
||||||
{ label: "Saturday: 9am - 3pm", href: "#" },
|
{ label: "Saturday: Closed", href: "#" },
|
||||||
{ label: "Sunday: Closed", href: "#" },
|
{ label: "Sunday: Closed", href: "#" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -11,14 +11,14 @@
|
|||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #ffffff;
|
--background: #ffffff;
|
||||||
--card: #f9f9f9;
|
--card: #fff5f0;
|
||||||
--foreground: #000612e6;
|
--foreground: #2b1810;
|
||||||
--primary-cta: #15479c;
|
--primary-cta: #e34400;
|
||||||
--primary-cta-text: #f7f6f7;
|
--primary-cta-text: #f7f6f7;
|
||||||
--secondary-cta: #f9f9f9;
|
--secondary-cta: #ffd4b3;
|
||||||
--secondary-cta-text: #0c1325;
|
--secondary-cta-text: #0c1325;
|
||||||
--accent: #e2e2e2;
|
--accent: #ff7b05;
|
||||||
--background-accent: #c4c4c4;
|
--background-accent: #ffa54d;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user