diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0a803b2..2e6d9ac 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,50 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Mulish } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Mulish } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Guru Accounting NY LLC - Tax & Accounting Services", + description: "Trusted tax preparation and accounting services in New York. 15+ years of expertise for individuals and businesses. Schedule your consultation today.", + keywords: "accountant NY, tax preparation New York, business accounting services, tax filing, bookkeeping NYC", + openGraph: { + title: "Guru Accounting NY LLC - Tax & Accounting Experts", + description: "Professional tax and accounting services in New York. Trusted by 500+ clients for accuracy and integrity.", + type: "website", + siteName: "Guru Accounting NY LLC", + url: "https://guruaccountingny.com", + }, + twitter: { + card: "summary_large_image", + title: "Guru Accounting NY LLC - Tax Services", + description: "Expert tax preparation and accounting for NYC individuals and businesses", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +53,9 @@ export default function RootLayout({ return ( - + {children}