From 85af0aa8ef1b9f10538ff759eac3dfdb191624ba Mon Sep 17 00:00:00 2001 From: development Date: Tue, 10 Feb 2026 04:40:30 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 46 ++++++++-------------------------------------- 1 file changed, 8 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8d06a4a..eaf60a1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,19 @@ import type { Metadata } from "next"; -import { Plus_Jakarta_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const plusJakartaSans = Plus_Jakarta_Sans({ - variable: "--font-plus-jakarta-sans", subsets: ["latin"], -}); export const metadata: Metadata = { - title: "BuildWave | San Diego Construction Company", description: "Premium construction services in San Diego. Residential, commercial, and renovation projects with 15+ years of excellence and expertise.", keywords: "construction San Diego, home builders, commercial construction, renovation contractor, residential construction", metadataBase: new URL("https://buildwave-construction.com"), - alternates: { - canonical: "https://buildwave-construction.com" - }, - openGraph: { - title: "BuildWave | Professional Construction Services", description: "San Diego's trusted construction company for residential and commercial projects.", siteName: "BuildWave", type: "website", images: [ - { - url: "https://img.b2bpic.net/free-photo/standing-industrial-engineers-blue-vests-helmets_496169-947.jpg", alt: "BuildWave Construction Project" - } - ] - }, - twitter: { - card: "summary_large_image", title: "BuildWave Construction", description: "Premium construction services in San Diego", images: ["https://img.b2bpic.net/free-photo/standing-industrial-engineers-blue-vests-helmets_496169-947.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "BuildWave Construction", description: "Premium construction services for San Diego"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +