From 83ef0aa334ee68c455f0a9d251b595b407f5f82e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 15:02:09 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++----------------------------------------- 1 file changed, 6 insertions(+), 49 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 23a168c..9579a58 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,62 +1,20 @@ 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"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -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"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Brooklyn Interiors | Interior Design & Renovation Services", description: "Transform your home with Brooklyn Interiors. Expert interior design, flooring installation, and painting services. Schedule your free consultation today.", keywords: "interior design Brooklyn, flooring installation, residential painting, home renovation, design consultation", metadataBase: new URL("https://brooklyninteriors.com"), - alternates: { - canonical: "https://brooklyninteriors.com"}, - openGraph: { - title: "Brooklyn Interiors | Transform Your Dream Space", description: "Expert interior design and renovation services in Brooklyn. Stress-free projects delivered on time and on budget.", url: "https://brooklyninteriors.com", siteName: "Brooklyn Interiors", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/man-standing-talking-colleagues_23-2147668768.jpg", alt: "interior design before after transformation modern living room renovation project"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Brooklyn Interiors | Professional Design & Renovation", description: "Transform your space with expert interior design and installation services.", images: ["http://img.b2bpic.net/free-photo/man-standing-talking-colleagues_23-2147668768.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Brooklyn Interiors | Interior Design & Renovation", description: "Transform your space with Brooklyn Interiors. Expert interior design, flooring installation, and painting services."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}