From e1b89f8265fb98ffdb1bccab07207c1de8e8f471 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 22:53:57 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..5ed0f9b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Archivo } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Archivo } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); +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"), + alternates: { + 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: [ + { + 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"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}