Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -51,7 +51,7 @@ export default function AboutPage() {
|
||||
background={{ variant: "radial-gradient" }}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-businesswoman-near-her-office-bright-summer-day_613910-3360.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-businesswoman-near-her-office-bright-summer-day_613910-3360.jpg?_wi=1",
|
||||
imageAlt: "Sherri Marshall professional photo",
|
||||
},
|
||||
]}
|
||||
@@ -76,7 +76,7 @@ export default function AboutPage() {
|
||||
{
|
||||
id: "sherri-marshall",
|
||||
name: "Sherri Marshall - Owner & Notary Public",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-businesswoman-near-her-office-bright-summer-day_613910-3360.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-successful-businesswoman-near-her-office-bright-summer-day_613910-3360.jpg?_wi=2",
|
||||
imageAlt: "Sherri Marshall",
|
||||
},
|
||||
]}
|
||||
@@ -147,7 +147,7 @@ export default function AboutPage() {
|
||||
|
||||
<div id="about-page-footer" data-section="about-page-footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-business-persons-stairs_23-2147702071.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-business-persons-stairs_23-2147702071.jpg?_wi=3"
|
||||
imageAlt="Sherri Marshall Notary office"
|
||||
logoText="Sherri Marshall Notary"
|
||||
copyrightText="© 2025 Sherri Marshall Notary. Women-Owned & Black-Owned Business."
|
||||
|
||||
@@ -54,7 +54,7 @@ export default function ContactPage() {
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/older-business-woman-working-papers-while-having-coffee_23-2148661127.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/older-business-woman-working-papers-while-having-coffee_23-2148661127.jpg?_wi=3",
|
||||
imageAlt: "Contact us for notary services",
|
||||
},
|
||||
]}
|
||||
@@ -157,7 +157,7 @@ export default function ContactPage() {
|
||||
|
||||
<div id="contact-page-footer" data-section="contact-page-footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-business-persons-stairs_23-2147702071.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-business-persons-stairs_23-2147702071.jpg?_wi=4"
|
||||
imageAlt="Sherri Marshall Notary office location"
|
||||
logoText="Sherri Marshall Notary"
|
||||
copyrightText="© 2025 Sherri Marshall Notary. All rights reserved. Women-Owned & Black-Owned Business."
|
||||
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -155,7 +155,7 @@ export default function HomePage() {
|
||||
"We come to you. Available for appointments at your home, office, or any local Mansfield business.",
|
||||
tag: "Most Popular",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/older-business-woman-working-papers-while-having-coffee_23-2148661127.jpg",
|
||||
"http://img.b2bpic.net/free-photo/older-business-woman-working-papers-while-having-coffee_23-2148661127.jpg?_wi=1",
|
||||
imageAlt: "mobile notary service vehicle",
|
||||
},
|
||||
{
|
||||
@@ -165,7 +165,7 @@ export default function HomePage() {
|
||||
"Fast and reliable title transfers and vehicle documentation notarization for all types of vehicles.",
|
||||
tag: "Quick Turnaround",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/female-seller-asking-sign-some-car-purchase-documents_651396-2410.jpg",
|
||||
"http://img.b2bpic.net/free-photo/female-seller-asking-sign-some-car-purchase-documents_651396-2410.jpg?_wi=1",
|
||||
imageAlt: "vehicle title transfer documents",
|
||||
},
|
||||
{
|
||||
@@ -175,7 +175,7 @@ export default function HomePage() {
|
||||
"Power of attorney, affidavits, real estate documents, and all other legal paperwork requiring notarization.",
|
||||
tag: "Comprehensive",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/flat-lay-business-concept_53876-14498.jpg",
|
||||
"http://img.b2bpic.net/free-photo/flat-lay-business-concept_53876-14498.jpg?_wi=1",
|
||||
imageAlt: "legal documents notary seal",
|
||||
},
|
||||
]}
|
||||
@@ -425,7 +425,7 @@ export default function HomePage() {
|
||||
{/* Footer */}
|
||||
<div id="footer-home" data-section="footer-home">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-business-persons-stairs_23-2147702071.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-business-persons-stairs_23-2147702071.jpg?_wi=1"
|
||||
imageAlt="Sherri Marshall Notary office in Mansfield, Ohio"
|
||||
logoText="Sherri Marshall Notary"
|
||||
copyrightText="© 2025 Sherri Marshall Notary. All rights reserved. Women-Owned & Black-Owned Business."
|
||||
|
||||
@@ -57,7 +57,7 @@ export default function ServicesPage() {
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/flat-lay-business-concept_53876-14498.jpg",
|
||||
"http://img.b2bpic.net/free-photo/flat-lay-business-concept_53876-14498.jpg?_wi=2",
|
||||
imageAlt: "Legal documents notarization services",
|
||||
},
|
||||
]}
|
||||
@@ -87,7 +87,7 @@ export default function ServicesPage() {
|
||||
"Professional notarization of any document that needs official verification and authentication.",
|
||||
tag: "Most Common",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/flat-lay-business-concept_53876-14498.jpg",
|
||||
"http://img.b2bpic.net/free-photo/flat-lay-business-concept_53876-14498.jpg?_wi=3",
|
||||
imageAlt: "General notary services",
|
||||
},
|
||||
{
|
||||
@@ -97,7 +97,7 @@ export default function ServicesPage() {
|
||||
"We come to you. Mobile appointments available at your home, office, or business location throughout Mansfield and surrounding areas.",
|
||||
tag: "Flexible",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/older-business-woman-working-papers-while-having-coffee_23-2148661127.jpg",
|
||||
"http://img.b2bpic.net/free-photo/older-business-woman-working-papers-while-having-coffee_23-2148661127.jpg?_wi=2",
|
||||
imageAlt: "Mobile notary services",
|
||||
},
|
||||
{
|
||||
@@ -107,7 +107,7 @@ export default function ServicesPage() {
|
||||
"Specialized in vehicle title transfers, bill of sale notarization, and all automotive documentation requiring official verification.",
|
||||
tag: "Automotive Focus",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/female-seller-asking-sign-some-car-purchase-documents_651396-2410.jpg",
|
||||
"http://img.b2bpic.net/free-photo/female-seller-asking-sign-some-car-purchase-documents_651396-2410.jpg?_wi=2",
|
||||
imageAlt: "Title transfer services",
|
||||
},
|
||||
{
|
||||
@@ -117,7 +117,7 @@ export default function ServicesPage() {
|
||||
"Expert notarization of power of attorney documents, ensuring compliance with Ohio legal requirements.",
|
||||
tag: "Legal Expertise",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/flat-lay-business-concept_53876-14498.jpg",
|
||||
"http://img.b2bpic.net/free-photo/flat-lay-business-concept_53876-14498.jpg?_wi=4",
|
||||
imageAlt: "Power of attorney notarization",
|
||||
},
|
||||
{
|
||||
@@ -127,7 +127,7 @@ export default function ServicesPage() {
|
||||
"Comprehensive notarization services for real estate transactions, deeds, and property documentation.",
|
||||
tag: "Real Estate Specialist",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/flat-lay-business-concept_53876-14498.jpg",
|
||||
"http://img.b2bpic.net/free-photo/flat-lay-business-concept_53876-14498.jpg?_wi=5",
|
||||
imageAlt: "Real estate document notarization",
|
||||
},
|
||||
{
|
||||
@@ -137,7 +137,7 @@ export default function ServicesPage() {
|
||||
"Professional notarization of affidavits, statutory declarations, and other legal statements requiring verification.",
|
||||
tag: "Legal Documents",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/flat-lay-business-concept_53876-14498.jpg",
|
||||
"http://img.b2bpic.net/free-photo/flat-lay-business-concept_53876-14498.jpg?_wi=6",
|
||||
imageAlt: "Affidavit notarization",
|
||||
},
|
||||
]}
|
||||
@@ -178,7 +178,7 @@ export default function ServicesPage() {
|
||||
{/* Footer */}
|
||||
<div id="services-page-footer" data-section="services-page-footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-business-persons-stairs_23-2147702071.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-business-persons-stairs_23-2147702071.jpg?_wi=2"
|
||||
imageAlt="Sherri Marshall Notary office"
|
||||
logoText="Sherri Marshall Notary"
|
||||
copyrightText="© 2025 Sherri Marshall Notary. Women-Owned & Black-Owned Business."
|
||||
|
||||
Reference in New Issue
Block a user