diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bb68649..f4458a2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Big Red's Supply Inc | Plumbing Parts Norman OK", description: "Trusted plumbing supply store in Norman, OK. Expert advice, quality parts for pros and homeowners. Call (405) 329-8680.", keywords: "plumbing supply Norman OK, plumbing parts near me, plumbing supplies Oklahoma, water heater parts, faucet repair", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Big Red's Supply Inc | Plumbing Experts Norman OK", description: "Your trusted local plumbing supply store in Norman, Oklahoma. Expert help and quality parts for every plumbing project.", url: undefined, - siteName: "Big Red's Supply Inc", type: "website", images: [], - }, - twitter: { - card: "summary", title: "Big Red's Supply Inc | Plumbing Parts & Expert Help", description: "Quality plumbing supplies and expert advice in Norman, OK. Call (405) 329-8680.", images: [], - }, -}; + title: "Big Red's Supply Inc | Plumbing Parts & Expert Help in Norman, OK", description: "Quality plumbing supplies, expert advice, and trusted service for Norman homeowners and professional plumbers. Visit Big Red's Supply Inc today."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}