diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0eed378..48840e2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,32 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Geist, Geist_Mono } from 'next/font/google'; +import './globals.css'; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: '--font-geist-sans', + subsets: ['latin'], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], +const geistMono = Geist_Mono({ + variable: '--font-geist-mono', + subsets: ['latin'], }); export const metadata: Metadata = { - title: "Premium Tires & Expert Service | Stewart Tire & Performance", description: "Discover premium tires and professional automotive services at Stewart Tire & Performance. 25+ years serving drivers with quality, expertise, and satisfaction.", keywords: "tires, tire shop, tire service, wheel alignment, tire installation, automotive", openGraph: { - title: "Stewart Tire & Performance - Your Tire Experts", description: "Premium tires and professional services you can trust. 25+ years of excellence.", type: "website", siteName: "Stewart Tire & Performance"}, - twitter: { - card: "summary_large_image", title: "Stewart Tire & Performance", description: "Premium tires and expert automotive service"}, - robots: { - index: true, - follow: true, - }, + title: 'Create Next App', + description: 'Generated by create next app', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +