From 00c192e4a4b9b2efcaaeddde36a93890cdfea620 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Mar 2026 00:57:21 +0000 Subject: [PATCH 1/4] 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 c5595ee..b3d41b0 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -47,7 +47,7 @@ export default function AboutPage() { tagAnimation="slide-up" textboxLayout="default" imagePosition="left" - imageSrc="http://img.b2bpic.net/free-photo/medium-shot-team-sitting-table_23-2149271747.jpg" + imageSrc="http://img.b2bpic.net/free-photo/medium-shot-team-sitting-table_23-2149271747.jpg?_wi=2" imageAlt="Middle Tennessee Business Voice consulting team" mediaAnimation="slide-up" useInvertedBackground={false} -- 2.49.1 From 8fd0903705aa90e09c51f2f61980b197bb2b06ae Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Mar 2026 00:57:21 +0000 Subject: [PATCH 2/4] 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 f8ba940..22ea4e2 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -50,7 +50,7 @@ const ContactPage = () => { tagAnimation="slide-up" textboxLayout="default" imagePosition="right" - imageSrc="http://img.b2bpic.net/free-photo/medium-shot-team-sitting-table_23-2149271747.jpg" + imageSrc="http://img.b2bpic.net/free-photo/medium-shot-team-sitting-table_23-2149271747.jpg?_wi=3" imageAlt="modern office workspace professional environment" mediaAnimation="slide-up" useInvertedBackground={false} -- 2.49.1 From 32bcd8ee19cf207bc1e6e5a7772473084fbdfa71 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Mar 2026 00:57:21 +0000 Subject: [PATCH 3/4] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 40 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 282ff27..36d3021 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,54 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito_Sans } 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 { Nunito_Sans } 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 nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Business Consulting Nashville | Middle Tennessee Business Voice", + description: "Expert business management consulting in Nashville, TN. Helping Middle Tennessee businesses grow through strategic consulting, operations improvement, and financial guidance.", + keywords: "business consultant Nashville, business consulting Middle Tennessee, management consulting Tennessee, Nashville business advisor, local business consulting", + metadataBase: new URL("https://mtbusinessvoice.com"), + alternates: { + canonical: "https://mtbusinessvoice.com", + }, + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Business Consulting Nashville | Middle Tennessee Business Voice", + description: "Expert business management consulting for Middle Tennessee businesses. Drive growth, improve operations, optimize finances.", + type: "website", + siteName: "Middle Tennessee Business Voice", + url: "https://mtbusinessvoice.com", + }, + twitter: { + card: "summary_large_image", + title: "Business Consulting Nashville | Middle Tennessee Business Voice", + description: "Expert business management consulting for Middle Tennessee businesses.", + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +57,9 @@ export default function RootLayout({ return ( - + {children}