From a3cce9e53ce0c86b5b1069b56335a917b749ccab Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 20:31:43 +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..0d5793b 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: "Alpine Dry Cleaning | Expert Dry Cleaning & Tailoring", + description: "Premium dry cleaning, tailoring, and garment care trusted by locals for over a decade. 24-hour turnaround available. Unbeatable prices with exceptional service.", + keywords: "dry cleaning near me, best dry cleaner, wedding dress cleaning, suit dry cleaning, tailoring alterations, professional garment care", + metadataBase: new URL("https://alpinedrycleaning.com"), + alternates: { + canonical: "https://alpinedrycleaning.com", + }, + openGraph: { + title: "Alpine Dry Cleaning | Luxury Garment Care", + description: "Fast, meticulous dry cleaning and tailoring trusted by your community. Experience the Alpine difference.", + url: "https://alpinedrycleaning.com", + siteName: "Alpine Dry Cleaning", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/side-view-man-using-smartphone_171337-19083.jpg", + alt: "Alpine Dry Cleaning premium service", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Alpine Dry Cleaning | Premium Garment Care", + description: "Expert dry cleaning and tailoring. 24-hour turnaround. Unbeatable prices.", + images: ["http://img.b2bpic.net/free-photo/side-view-man-using-smartphone_171337-19083.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +70,9 @@ export default function RootLayout({ return ( - + {children}