diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c3cfe55..d1cef3e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Dallas Towing Service | QK 83 24/7 Emergency Roadside Assistance", description: "Fast, professional towing and roadside assistance in Dallas. 24/7 emergency response. Gentle vehicle handling. Honest pricing. Call now for immediate help.", keywords: "Dallas towing service, emergency towing, roadside assistance Dallas, tow truck Dallas, fast towing service", metadataBase: new URL("https://qk83towing.com"), - alternates: { - canonical: "https://qk83towing.com"}, - openGraph: { - title: "Dallas' Most Trusted Towing & Roadside Service | QK 83", description: "Fast. Professional. Respectful. 24/7 emergency towing available across Dallas and DFW.", url: "https://qk83towing.com", siteName: "QK 83 Towing & Roadside Service", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/two-guys-talking-about-work-work-garage-near-truck-transfer-documents-with-goods_1157-46501.jpg", alt: "Professional tow truck at night"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Dallas Towing Service | QK 83", description: "24/7 emergency towing and roadside assistance. Fast response. Professional service.", images: ["http://img.b2bpic.net/free-photo/two-guys-talking-about-work-work-garage-near-truck-transfer-documents-with-goods_1157-46501.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "QK 83 Towing & Roadside Service", description: "Fast, professional towing and roadside assistance in Dallas. Available 24/7."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}