Merge version_2 into main #2
@@ -1,49 +1,25 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Montserrat } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./styles/variables.css";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Juan Guevara Concrete Work | NC Concrete Contractor", description: "Expert concrete services in North Carolina. 20+ years of driveways, slabs, stamped concrete & sealing. Free estimates. Serving Triad & statewide.", keywords: "concrete contractor, concrete services, driveway contractor, stamped concrete, North Carolina, Greensboro", metadataBase: new URL("https://juanguevara.nc"),
|
||||
alternates: {
|
||||
canonical: "https://juanguevara.nc"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Juan Guevara Concrete Work | Premium Concrete Services NC", description: "20+ years of expert concrete work. Driveways, slabs, stamped designs & sealing throughout North Carolina.", type: "website", siteName: "Juan Guevara Concrete Work", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AR8q2doPyjfuxT6ds97et4kSQy/uploaded-1772552162781-2ywz3t1a.png", alt: "Juan Guevara Concrete Work Logo"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Juan Guevara Concrete Work | NC Concrete Contractor", description: "Expert concrete services with 20+ years experience. Free estimates available.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AR8q2doPyjfuxT6ds97et4kSQy/uploaded-1772552162781-2ywz3t1a.png"]
|
||||
}
|
||||
};
|
||||
title: "Juan Guevara Concrete Work | Professional Concrete Services NC", description: "Premium concrete solutions for North Carolina. 20+ years of expert concrete work including driveways, slabs, stamped designs, and sealing services."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.variable}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1411,7 +1387,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -37,6 +37,7 @@ export default function LandingPage() {
|
||||
text: "Get Free Estimate", href: "contact"
|
||||
}}
|
||||
brandName="Juan Guevara"
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AR8q2doPyjfuxT6ds97et4kSQy/uploaded-1772555864254-smd9grh2.png"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user