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 (
-
-