From 1e6d329d89517325707a86114fadd9374b6568b8 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 22:09:10 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 42 +++++++++--------------------------------- 1 file changed, 9 insertions(+), 33 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ef595fb..7687084 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,46 +1,23 @@ import type { Metadata } from "next"; -import { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Brothers Auto Care | Auto Repair in Lubbock, TX", description: "Family-owned auto repair shop in Lubbock, TX. Honest, affordable maintenance and repair services for all makes and models.", keywords: "auto repair, car maintenance, oil change, brake service, Lubbock TX, mechanic", metadataBase: new URL("https://brothersautocare.com"), - alternates: { - canonical: "https://brothersautocare.com"}, - openGraph: { - title: "Brothers Auto Care | Auto Repair & Maintenance", description: "Your trusted auto repair partner in Lubbock, TX. Professional, honest, affordable services.", url: "https://brothersautocare.com", siteName: "Brothers Auto Care", type: "website"}, - twitter: { - card: "summary_large_image", title: "Brothers Auto Care | Auto Repair in Lubbock, TX", description: "Professional auto repair and maintenance services you can trust."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Brothers Auto Care - New Owners", description: "Trusted auto repair & maintenance in Lubbock, TX. Under new ownership with expert service, fair pricing, and payment plans available."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +