Merge version_2 into main #3

Merged
bender merged 3 commits from version_2 into main 2026-03-04 01:53:57 +00:00
3 changed files with 25 additions and 66 deletions

View File

@@ -1,60 +1,20 @@
import type { Metadata } from "next";
import { Manrope } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./styles/variables.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 = {
title: "Summit Shield Roofing - Jacksonville's Trusted Roofing Experts | Free Inspections",
description: "Professional roofing services in Jacksonville, FL. Roof repair, replacement, and storm damage restoration. Licensed & insured. 10+ years experience. Free inspections. 24/7 emergency service.",
keywords: "roofing Jacksonville, roof repair, roof replacement, storm damage repair, commercial roofing, licensed roofer, roof inspection",
metadataBase: new URL("https://summitshieldroofing.com"),
alternates: {
canonical: "https://summitshieldroofing.com",
},
openGraph: {
title: "Summit Shield Roofing - Jacksonville's Trusted Roofing Experts",
description: "Professional roofing services with 10+ years experience. Free roof inspections. Licensed & insured. 24/7 emergency service.",
url: "https://summitshieldroofing.com",
siteName: "Summit Shield Roofing",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Summit Shield Roofing - Jacksonville's Trusted Roofing Experts",
description: "Professional roofing services in Jacksonville. Repair, replacement, storm damage. Free inspections. Licensed & insured.",
},
robots: {
index: true,
follow: true,
},
};
title: "Summit Shield Roofing", description: "Jacksonville's trusted roofing experts. Professional residential & commercial roofing services. Free inspections, 24/7 emergency service."};
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: `
@@ -1422,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -55,7 +55,7 @@ export default function HomePage() {
tag="Professional Roofing Solutions"
tagIcon={Shield}
tagAnimation="slide-up"
background={{ variant: "canvas-reveal" }}
background={{ variant: "gradient-bars" }}
buttons={[
{ text: "Get Free Inspection", href: "/contact" },
{ text: "Call Now: (904) 555-0147", onClick: handleCallNow },
@@ -192,4 +192,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -2,23 +2,23 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #f7f6f7;;
--card: #ffffff;;
--foreground: #250c0d;;
--primary-cta: #b82b40;;
--secondary-cta: #ffffff;;
--accent: #b90941;;
--background-accent: #e8a8b6;; */
/* --background: #ffffff;;
--card: #f9f9f9;;
--foreground: #120006e6;;
--primary-cta: #e63946;;
--secondary-cta: #f9f9f9;;
--accent: #e2e2e2;;
--background-accent: #c4c4c4;; */
--background: #f7f6f7;;
--card: #ffffff;;
--foreground: #250c0d;;
--primary-cta: #b82b40;;
--background: #ffffff;;
--card: #f9f9f9;;
--foreground: #120006e6;;
--primary-cta: #e63946;;
--primary-cta-text: #f7f6f7;;
--secondary-cta: #ffffff;;
--secondary-cta: #f9f9f9;;
--secondary-cta-text: #250c0d;;
--accent: #b90941;;
--background-accent: #e8a8b6;;
--accent: #e2e2e2;;
--background-accent: #c4c4c4;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);