From 65d5143d2d40e7acba270b8f9f21d8c0b1bce5ba Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 12:28:23 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f5dc612..dffb1e8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Arambham Multiservices | Business Center in Satara", description: "Professional business center in Satara offering documentation, registration, and business assistance services. Fast, reliable, and trusted by local businesses.", keywords: "multiservices center Satara, documentation services Satara, business services Satara, local service center Satara, registration services", metadataBase: new URL("https://arambham-multiservices.com"), - alternates: { - canonical: "https://arambham-multiservices.com"}, - openGraph: { - title: "Arambham Multiservices | Business Center in Satara", description: "Professional multiservices center providing documentation, registration, and business assistance services in Satara.", url: "https://arambham-multiservices.com", siteName: "Arambham Multiservices", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/empty-company-office-with-workstation-desk-business-development-space-filled-with-documents-computers-corporation-department-room-used-career-development-success_482257-60055.jpg", alt: "Arambham Multiservices Center"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Arambham Multiservices | Business Center in Satara", description: "Fast, reliable business services in Satara. Documentation, registration, and consultancy support.", images: ["http://img.b2bpic.net/free-photo/empty-company-office-with-workstation-desk-business-development-space-filled-with-documents-computers-corporation-department-room-used-career-development-success_482257-60055.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Arambham Multiservices - Professional Services in Satara", description: "Complete range of professional documentation, registration, and business assistance services in Satara."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}