import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Nunito } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); const nunito = Nunito({ variable: "--font-nunito", subsets: ["latin"], }); export const metadata: Metadata = { title: "Big Bucks Gun & Pawn | Licensed FFL Dealer in Ladson, SC", description: "Licensed FFL firearms dealer and pawn shop in Ladson, SC. Buy, sell, trade firearms, jewelry, gold with fair prices. Fast appraisals, no credit checks on pawn loans. Trusted by 4.7/5 customers.", keywords: "FFL dealer, gun shop, pawn shop, Ladson SC, firearms, jewelry, gold, appraisal, pawn loans, licensed dealer", metadataBase: new URL("https://bigbucksgunpawn.com"), alternates: { canonical: "https://bigbucksgunpawn.com"}, openGraph: { title: "Big Bucks Gun & Pawn | South Carolina's Trusted FFL Dealer", description: "Licensed firearms dealer and pawn shop. Buy, sell, trade, and pawn with transparency and expertise. Fast appraisals, fair prices, no credit checks.", url: "https://bigbucksgunpawn.com", siteName: "Big Bucks Gun & Pawn", type: "website"}, twitter: { card: "summary_large_image", title: "Big Bucks Gun & Pawn | FFL Licensed Dealer", description: "South Carolina's trusted gun shop and pawn dealer. Transparent pricing, fast service, expert appraisals."}, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}