From 356e42e4fa29c062cf55a5b721080446b2ba732e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Mar 2026 21:11:57 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 58 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 9 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3865a..8e27573 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,67 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } 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 { Manrope } from "next/font/google"; -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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); + const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Professional Service in Your Area | ProServices", + description: "Reliable, affordable service for residential and commercial properties. Fast response times, free estimates, and expert service. Call (555) 123-4567 today.", + keywords: "service, professional, local, reliable, affordable, quote", + metadataBase: new URL("https://proservices.local/"), + alternates: { + canonical: "https://proservices.local/", + }, + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Professional Service You Can Trust", + description: "Fast, affordable, and done right the first time. Free estimates available.", + type: "website", + siteName: "ProServices", + url: "https://proservices.local/", + images: [ + { + url: "https://proservices.local/og-home.jpg", + alt: "Professional service team ready to serve", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Professional Service in Your Area", + description: "Reliable, affordable service. Call for your free quote.", + images: ["https://proservices.local/og-home.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +70,9 @@ export default function RootLayout({ return ( - + {children}