Merge version_1 into main #1
@@ -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}
|
||||
|
||||
@@ -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}
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunitoSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +71,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -230,7 +230,7 @@ export default function HomePage() {
|
||||
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=1"
|
||||
imageAlt="modern office workspace professional environment"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
|
||||
Reference in New Issue
Block a user