Update src/app/layout.tsx

This commit is contained in:
2026-03-12 01:31:03 +00:00
parent 61fe3f32b1
commit 93cdab44e8

View File

@@ -1,18 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Lato } 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 { Lato } 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 lato = Lato({
variable: "--font-lato",
@@ -20,6 +24,39 @@ const lato = Lato({
weight: ["100", "300", "400", "700", "900"],
});
export const metadata: Metadata = {
title: "BookKeepwithUs - Professional Bookkeeping Services",
description: "Stress-free bookkeeping for self-employed professionals and small business owners. Fast, friendly, reliable support with affordable monthly accounting services.",
keywords: "bookkeeping service, small business accounting, monthly bookkeeping, bookkeeping for realtors, affordable bookkeeper",
metadataBase: new URL("https://bookkeepwithus.com"),
alternates: {
canonical: "https://bookkeepwithus.com",
},
openGraph: {
title: "BookKeepwithUs - Your Books Handled. Your Time Returned.",
description: "Professional bookkeeping services for self-employed professionals and small business owners seeking timesaving financial management solutions.",
url: "https://bookkeepwithus.com",
siteName: "BookKeepwithUs",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/young-pretty-woman-working-with-laptop-taking-notes-desktop-office_231208-5894.jpg",
alt: "Professional bookkeeping workspace",
},
],
},
twitter: {
card: "summary_large_image",
title: "BookKeepwithUs - Stress-Free Bookkeeping",
description: "Simple, affordable bookkeeping for business owners who value their time.",
images: ["http://img.b2bpic.net/free-photo/young-pretty-woman-working-with-laptop-taking-notes-desktop-office_231208-5894.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -28,7 +65,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${lato.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -40,4 +79,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}