From e1de53131a3ce380e82eb50f119a01e95e3e99ee Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 19:36:36 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 82b392d..76a9673 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Roboto } 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 { Roboto } 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 roboto = Roboto({ variable: "--font-roboto", @@ -20,6 +24,41 @@ const roboto = Roboto({ weight: ["100", "300", "400", "500", "700", "900"], }); +export const metadata: Metadata = { + title: "Mi.Elite Home - Luxury Home Remodeling in Miami", + description: "Premium doors, vanities, flooring & home décor with exceptional service. Visit our Miami showroom or shop online today.", + keywords: "home remodeling, interior doors, vanities, flooring, Miami showroom, luxury home products", + metadataBase: new URL("https://mielitehome.com"), + alternates: { + canonical: "https://mielitehome.com", + }, + openGraph: { + title: "Mi.Elite Home - Luxury Home Remodeling", + description: "Discover premium home remodeling products with exceptional service. Luxury without the price tag.", + url: "https://mielitehome.com", + siteName: "Mi.Elite Home", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/top-view-yummy-sweet-bagels-sugar-powdered-white-desk_140725-81098.jpg", + alt: "Mi.Elite Home - Luxury Home Remodeling", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Mi.Elite Home - Luxury Home Remodeling", + description: "Premium home products & professional service in Miami", + images: [ + "http://img.b2bpic.net/free-photo/top-view-yummy-sweet-bagels-sugar-powdered-white-desk_140725-81098.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +67,9 @@ export default function RootLayout({ return ( - + {children}