From 00bd52da656682e5374a9ea907c7edcb1e328e50 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 10:55:36 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1433 +------------------------------------------- 1 file changed, 12 insertions(+), 1421 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 657ce57..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1435 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Montserrat } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Bhawanshilp Architects - Best Architecture & Interior Design in Kanpur", - description: "Award-winning architecture and interior design firm in Kanpur. 500+ satisfied clients. Residential, commercial, 3D design, structural engineering & urban planning services.", - keywords: "architect in Kanpur, best architect Kanpur, house design, interior designer, 3D elevation, structural engineer, residential architect, modern house design Kanpur", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Bhawanshilp Architects - Premium Design Services in Kanpur", - description: "Transform your vision into reality with our award-winning architecture and interior design expertise.", - type: "website", - siteName: "Bhawanshilp Architects", - images: [ - { - url: "http://img.b2bpic.net/free-photo/road-city_1417-1426.jpg", - alt: "Modern architecture design by Bhawanshilp Architects", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Bhawanshilp Architects - Architecture & Interior Design", - description: "500+ satisfied clients. Premium residential and commercial design services in Kanpur.", - images: ["http://img.b2bpic.net/free-photo/road-city_1417-1426.jpg"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -