Update src/app/layout.tsx

This commit is contained in:
2026-03-03 06:10:02 +00:00
parent 4e00f18f58
commit b1bbc66605

View File

@@ -1,40 +1,25 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const montserrat = Montserrat({ const inter = Inter({
variable: "--font-montserrat", variable: "--font-inter", subsets: ["latin"],
subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "ROI Capital Marketing - Strategic Marketing Solutions", title: "ROI Capital Marketing - Strategic Marketing Solutions", description: "Transform your brand with data-driven marketing strategies that deliver measurable results. ROI Capital helps ambitious businesses scale their marketing ROI.", keywords: "marketing agency, digital marketing, SEO, content marketing, marketing strategy, brand growth", metadataBase: new URL("https://roicapitalmarketing.com"),
description: "Transform your brand with data-driven marketing strategies that deliver measurable results. ROI Capital helps ambitious businesses scale their marketing ROI.",
keywords: "marketing agency, digital marketing, SEO, content marketing, marketing strategy, brand growth",
metadataBase: new URL("https://roicapitalmarketing.com"),
alternates: { alternates: {
canonical: "https://roicapitalmarketing.com", canonical: "https://roicapitalmarketing.com"},
},
openGraph: { openGraph: {
title: "ROI Capital Marketing - Strategic Marketing Solutions", title: "ROI Capital Marketing - Strategic Marketing Solutions", description: "Transform your brand with data-driven marketing strategies that deliver measurable results.", url: "https://roicapitalmarketing.com", siteName: "ROI Capital Marketing", type: "website", images: [
description: "Transform your brand with data-driven marketing strategies that deliver measurable results.",
url: "https://roicapitalmarketing.com",
siteName: "ROI Capital Marketing",
type: "website",
images: [
{ {
url: "http://img.b2bpic.net/free-photo/multi-ethnic-business-team-sitting-table-office-center-speaking-about-project-meeting-broadroom_482257-5077.jpg", url: "http://img.b2bpic.net/free-photo/multi-ethnic-business-team-sitting-table-office-center-speaking-about-project-meeting-broadroom_482257-5077.jpg", alt: "ROI Capital Marketing Agency"},
alt: "ROI Capital Marketing Agency",
},
], ],
}, },
twitter: { twitter: {
card: "summary_large_image", card: "summary_large_image", title: "ROI Capital Marketing - Strategic Marketing Solutions", description: "Transform your brand with data-driven marketing strategies that deliver measurable results.", images: ["http://img.b2bpic.net/free-photo/multi-ethnic-business-team-sitting-table-office-center-speaking-about-project-meeting-broadroom_482257-5077.jpg"],
title: "ROI Capital Marketing - Strategic Marketing Solutions",
description: "Transform your brand with data-driven marketing strategies that deliver measurable results.",
images: ["http://img.b2bpic.net/free-photo/multi-ethnic-business-team-sitting-table-office-center-speaking-about-project-meeting-broadroom_482257-5077.jpg"],
}, },
robots: { robots: {
index: true, index: true,
@@ -50,7 +35,7 @@ export default function RootLayout({
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body className={`${montserrat.variable} antialiased`}> <body className={`${inter.variable} antialiased`}>
<Tag /> <Tag />
{children} {children}
@@ -1424,4 +1409,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }