From 451bf604353098a74de2c2542fa068d05d02bb12 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 19:16:27 +0000 Subject: [PATCH] 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 2ed8420..b7b7ff3 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 { 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 ( - + {children}