Update src/app/layout.tsx

This commit is contained in:
2026-03-13 19:16:27 +00:00
parent 1459473ab3
commit 451bf60435

View File

@@ -1,24 +1,54 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } 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 { Manrope } 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 manrope = Manrope({
variable: "--font-manrope",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Siddharth M Iyer - Influencer Marketing & Talent Manager",
description: "4 years of expert influencer marketing, talent management, and brand partnerships. Strategic campaigns that drive authentic engagement and measurable results.",
keywords: "influencer marketing, talent manager, influencer representation, brand partnerships, content creator management, digital marketing, social media marketing",
metadataBase: new URL("https://siddharthmyer.com"),
alternates: {
canonical: "https://siddharthmyer.com",
},
openGraph: {
title: "Siddharth M Iyer - Influencer & Talent Manager",
description: "Strategic influencer marketing and talent management expertise. 150+ campaigns, 500M+ reach, 80+ satisfied brands.",
url: "https://siddharthmyer.com",
siteName: "Siddharth M Iyer",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Siddharth M Iyer - Influencer Marketing Expert",
description: "4 years of proven influencer marketing expertise connecting brands with creators.",
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +57,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${manrope.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +71,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}