From 59ebe2b203af2a800470bc4f41e0309d938bb163 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 10:46:23 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 63 ++++++---------------------------------------- 1 file changed, 8 insertions(+), 55 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 646dbed..466d7dd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,66 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Rathore JS & Associate - Premium CA & Accounting Services", - description: "Expert accounting, tax planning, and financial consulting services. Trusted by 500+ businesses for professional CA services in India.", - keywords: "accounting, CA services, tax planning, financial consulting, audit, compliance, chartered accountant", - metadataBase: new URL("https://rathorejs.com"), - alternates: { - canonical: "https://rathorejs.com", - }, - openGraph: { - title: "Rathore JS & Associate - Professional Accounting & CA Firm", - description: "20 years of excellence in accounting, tax, and financial services. Expert guidance for your business.", - siteName: "Rathore JS & Associate", - type: "website", - }, - twitter: { - card: "summary_large_image", - title: "Rathore JS & Associate - CA & Accounting Services", - description: "Professional accounting and tax services for businesses in India.", - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Rathore JS & Associate | Premium Accounting & CA Services", description: "Expert accounting and CA services for your business. Tax planning, audits, compliance, and financial consulting by certified professionals."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}