Update src/app/layout.tsx

This commit is contained in:
2026-03-15 14:26:59 +00:00
parent c1eb0e609a
commit 6008b709f7

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +67,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}