import type { Metadata } from "next"; import { Mulish } from "next/font/google"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Quality Used Cars in Seven Springs, NC | K&W Used Cars", description: "Find affordable, reliable used cars in Duplin County. Easy financing for all credit situations. Family-owned dealership serving Seven Springs, NC. Call (919) 222-2755.", keywords: "used cars Seven Springs NC, used cars Duplin County, car financing, affordable vehicles, trusted dealership", metadataBase: new URL("https://kwusedcars.com"), alternates: { canonical: "https://kwusedcars.com" }, openGraph: { title: "Quality Used Cars You Can Trust | K&W Used Cars", description: "Reliable vehicles with easy financing. Honest service in Seven Springs, NC.", url: "https://kwusedcars.com", siteName: "K&W Used Cars", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/row-new-cars-port_335224-806.jpg", alt: "K&W Used Cars Dealership" }, ], }, twitter: { card: "summary_large_image", title: "Quality Used Cars | K&W Used Cars", description: "Find your perfect vehicle at K&W Used Cars in Seven Springs, NC.", images: ["http://img.b2bpic.net/free-photo/row-new-cars-port_335224-806.jpg"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}