9 Commits

Author SHA1 Message Date
31bd53849c Update src/app/page.tsx 2026-03-05 05:23:09 +00:00
eaecc01461 Update src/app/page.tsx 2026-03-05 05:17:29 +00:00
c62fda13ba Update src/app/layout.tsx 2026-03-05 05:17:29 +00:00
df9a9eb661 Merge version_10 into main
Merge version_10 into main
2026-03-05 05:08:16 +00:00
41f06a3e90 Update src/app/page.tsx 2026-03-05 05:08:12 +00:00
cda928bd3b Merge version_10 into main
Merge version_10 into main
2026-03-05 05:05:04 +00:00
8fc7205bb8 Update src/app/page.tsx 2026-03-05 05:05:00 +00:00
ca8579bb4e Update src/app/layout.tsx 2026-03-05 05:04:59 +00:00
804c856bb5 Merge version_9 into main
Merge version_9 into main
2026-03-05 00:02:21 +00:00
2 changed files with 12 additions and 47 deletions

View File

@@ -1,53 +1,19 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
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 = {
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"),
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,
},
};
title: "Cornerstone Auto Repair", description: "Expert auto repair services in Spearfish, SD. Family-owned and operated."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${manrope.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1415,7 +1381,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -37,7 +37,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroOverlay
title="Expert Auto Repair You Can Trust"
description="Family-owned and operated since day one. We keep your vehicles running smoothly with honest, professional service."
description="Family-owned and operated. We keep your vehicles running smoothly with honest, professional service."
tag="Professional Service"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUzJAIJxnBYwFIBspQ1lc7bdVs/uploaded-1772663039208-htbwevc6.jpg?_wi=1"
imageAlt="Professional auto repair shop"
@@ -109,7 +109,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBase
logoText="Cornerstone Auto Repair"
copyrightText="© 2025 Cornerstone Auto Repair. Closed on Saturday."
copyrightText="© 2026 Cornerstone Auto Repair."
columns={[
{
title: "Quick Links", items: [
@@ -126,7 +126,7 @@ export default function LandingPage() {
},
{
title: "Hours", items: [
{ label: "Monday - Friday: 8am - 5pm", href: "#" },
{ label: "Mon-Fri: 8am - 5pm", href: "#" },
{ label: "Saturday: Closed", href: "#" },
{ label: "Sunday: Closed", href: "#" },
],
@@ -136,4 +136,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}