From 9a0cb89f3fa711cc45cc7fc7620a869f62ef7272 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 13:51:21 +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 42fa6ab..4f3766f 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 { DM_Sans } 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 { DM_Sans } 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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Red Barn Veterinary Service - Sidney, Illinois", + description: "Trusted veterinary care in Sidney, IL. Expert compassionate vet clinic offering wellness exams, diagnostics, senior pet care, and emergency services. Call (217) 688-2800.", + keywords: "Sidney Illinois veterinarian, veterinary clinic Sidney IL, affordable vet Sidney Illinois, pet vet near Sidney IL, animal hospital", + metadataBase: new URL("https://redbarnvet.com"), + alternates: { + canonical: "https://redbarnvet.com", + }, + openGraph: { + title: "Red Barn Veterinary Service - Sidney, IL", + description: "20+ years of trusted, compassionate veterinary care for Sidney-area pets and families.", + url: "https://redbarnvet.com", + siteName: "Red Barn Veterinary Service", + images: [ + { + url: "http://img.b2bpic.net/free-photo/medium-shot-doctor-checking-smiley-dog_23-2149304330.jpg", + alt: "Red Barn Veterinary Service", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Red Barn Veterinary Service", + description: "Expert, compassionate veterinary care in Sidney, Illinois.", + images: ["http://img.b2bpic.net/free-photo/medium-shot-doctor-checking-smiley-dog_23-2149304330.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}