From 61f6403fc5a1e77ec4bc7ecb6da8fbddba021c09 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 01:31:02 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 51b6209..9b9b357 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -85,7 +85,7 @@ export default function AboutPage() { title: "Business Owners Served", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/indoor-shot-blonde-female-having-business-conversation-with-colleague_273609-4708.jpg" + imageSrc="http://img.b2bpic.net/free-photo/indoor-shot-blonde-female-having-business-conversation-with-colleague_273609-4708.jpg?_wi=2" imageAlt="Financial clarity and organization" useInvertedBackground={false} mediaAnimation="slide-up" -- 2.49.1 From 61fe3f32b113822c386c8300e2145955d70af030 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 01:31:03 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index de7a304..2d158ca 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -80,7 +80,7 @@ export default function ContactPage() { { text: "Schedule Consultation", href: "/contact" }, { text: "Back to Home", href: "/" }, ]} - imageSrc="http://img.b2bpic.net/free-photo/young-pretty-woman-working-with-laptop-taking-notes-desktop-office_231208-5894.jpg" + imageSrc="http://img.b2bpic.net/free-photo/young-pretty-woman-working-with-laptop-taking-notes-desktop-office_231208-5894.jpg?_wi=2" imageAlt="Professional bookkeeping setup with laptop and financial documents" mediaAnimation="blur-reveal" avatars={[ -- 2.49.1 From 93cdab44e8a8b0abcbfa5e97dff8ab98d275b529 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 01:31:03 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..f705759 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}