Update src/app/layout.tsx

This commit is contained in:
2026-03-14 19:35:35 +00:00
parent 75635dde8e
commit 9f3300ca99

View File

@@ -1,18 +1,22 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Inter_Tight } 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 { Inter_Tight } 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 interTight = Inter_Tight({
variable: "--font-inter-tight",
@@ -20,6 +24,38 @@ const interTight = Inter_Tight({
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "Sherri Marshall Notary - Fast Mobile Notary Services Mansfield, Ohio",
description: "Fast, reliable mobile notary services in Mansfield, Ohio. Same-day appointments, 5-star rated, women-owned & Black-owned business. Call (419) 564-1776.",
keywords: "notary public Mansfield Ohio, mobile notary, title notarization, power of attorney, same-day notary, notary near me",
metadataBase: new URL("https://sherrimarshallnotary.com"),
alternates: {
canonical: "https://sherrimarshallnotary.com",
},
openGraph: {
siteName: "Sherri Marshall Notary",
title: "Fast Mobile Notary Services in Mansfield, Ohio",
description: "Same-day notary appointments. Call (419) 564-1776 for reliable notarization services.",
url: "https://sherrimarshallnotary.com",
type: "website",
images: [
{
url: "https://sherrimarshallnotary.com/og-image.jpg",
alt: "Sherri Marshall Notary Services",
},
],
},
twitter: {
card: "summary_large_image",
title: "Sherri Marshall Notary - Mansfield, Ohio",
description: "Fast mobile notary services with same-day appointments. 5-star rated.",
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -28,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${interTight.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -40,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}