From d64e021d439357d5372fe1fffaac482b48677fa2 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 06:28:00 +0000 Subject: [PATCH] Add src/app/layout.tsx --- src/app/layout.tsx | 1412 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 1412 insertions(+) create mode 100644 src/app/layout.tsx diff --git a/src/app/layout.tsx b/src/app/layout.tsx new file mode 100644 index 0000000..d99bc5e --- /dev/null +++ b/src/app/layout.tsx @@ -0,0 +1,1412 @@ +import type { Metadata } from "next"; +import { Inter } from "next/font/google"; +import "./globals.css"; +import { ServiceWrapper } from "@/components/ServiceWrapper"; +import Tag from "@/tag/Tag"; + +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); + +export const metadata: Metadata = { + title: "CA Pushkar Rathi & Associates - Accounting & Tax Services", description: "Professional CA services in Jalna, Maharashtra. Expert accounting, taxation, GST compliance, and financial advisory for businesses and individuals.", keywords: "chartered accountant, tax consultant, ITR filing, GST compliance, accounting services, Jalna, Maharashtra", metadataBase: new URL("https://capushkarrathi.com"), + alternates: { + canonical: "https://capushkarrathi.com"}, + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "CA Pushkar Rathi & Associates - Trusted Financial Solutions", description: "Expert accounting and tax consulting services in Jalna, Maharashtra. Over 10 years of professional experience.", type: "website", siteName: "CA Pushkar Rathi & Associates", images: [ + { + url: "http://img.b2bpic.net/free-photo/modern-economists_1098-12944.jpg", alt: "CA Pushkar Rathi & Associates"}, + ], + }, + twitter: { + card: "summary_large_image", title: "CA Pushkar Rathi & Associates", description: "Professional CA services for accounting, taxation, and compliance", images: ["http://img.b2bpic.net/free-photo/modern-economists_1098-12944.jpg"], + }, +}; + +export default function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( + + + + + {children} + +