diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5ed0f9b..5d0caae 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,32 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Archivo } from "next/font/google"; +import { Montserrat } from "next/font/google"; +import { Lato } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const montserrat = Montserrat({ + variable: "--font-montserrat", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const archivo = Archivo({ - variable: "--font-archivo", - subsets: ["latin"], +const lato = Lato({ + variable: "--font-lato", subsets: ["latin"], + weight: ["100", "300", "400", "700", "900"], }); export const metadata: Metadata = { - title: "Shook Towing | Fast, Fair, Professional Towing in Corpus Christi", - description: "Fast, friendly towing and roadside assistance 24/7 in Corpus Christi. Honest pricing, professional drivers, exceptional service when you need it most.", - keywords: "towing service Corpus Christi, roadside assistance, emergency towing, flatbed towing, vehicle transport, professional drivers", - metadataBase: new URL("https://shooktowing.com"), + title: "Shook Towing | Fast, Fair, Professional Towing in Corpus Christi", description: "Fast, friendly towing and roadside assistance 24/7 in Corpus Christi. Honest pricing, professional drivers, exceptional service when you need it most.", keywords: "towing service Corpus Christi, roadside assistance, emergency towing, flatbed towing, vehicle transport, professional drivers", metadataBase: new URL("https://shooktowing.com"), alternates: { - canonical: "https://shooktowing.com", - }, + canonical: "https://shooktowing.com"}, openGraph: { - title: "Shook Towing | Fast & Fair Towing in Corpus Christi", - description: "Professional towing and roadside assistance available 24/7. Fast response, honest pricing, exceptional care.", - url: "https://shooktowing.com", - siteName: "Shook Towing", - type: "website", - images: [ + title: "Shook Towing | Fast & Fair Towing in Corpus Christi", description: "Professional towing and roadside assistance available 24/7. Fast response, honest pricing, exceptional care.", url: "https://shooktowing.com", siteName: "Shook Towing", type: "website", images: [ { - url: "https://shooktowing.com/og-image.jpg", - alt: "Shook Towing professional tow truck and team", - }, + url: "https://shooktowing.com/og-image.jpg", alt: "Shook Towing professional tow truck and team"}, ], }, twitter: { - card: "summary_large_image", - title: "Shook Towing | Fast & Fair Towing in Corpus Christi", - description: "Professional towing and roadside assistance available 24/7. Fast response, honest pricing, exceptional care.", - images: ["https://shooktowing.com/twitter-image.jpg"], + card: "summary_large_image", title: "Shook Towing | Fast & Fair Towing in Corpus Christi", description: "Professional towing and roadside assistance available 24/7. Fast response, honest pricing, exceptional care.", images: ["https://shooktowing.com/twitter-image.jpg"], }, robots: { index: true, @@ -65,7 +43,7 @@ export default function RootLayout({ {children} @@ -78,4 +56,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +}