diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ed8420..09cc980 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ 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: "Pipada Capital – Private Equity for Enduring Consumer Brands", + description: "We invest in what endures. Pipada Capital is a conviction-led private equity firm investing in consumer brands across India, the Middle East, and the United States.", + keywords: "private equity, consumer brands, India, Middle East, United States, investment", + metadataBase: new URL("https://pipada.capital"), + alternates: { + canonical: "https://pipada.capital", + }, + openGraph: { + title: "Pipada Capital – Private Equity for Enduring Consumer Brands", + description: "We invest in what endures. Conviction-led private equity investing across three markets.", + url: "https://pipada.capital", + siteName: "Pipada Capital", + images: [ + { + url: "http://img.b2bpic.net/free-vector/paper-cut-shapes-background-halftone_52683-28628.jpg", + alt: "Pipada Capital", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Pipada Capital – We Invest in What Endures", + description: "Conviction-led private equity investing in consumer brands across India, the Middle East, and the United States.", + images: ["http://img.b2bpic.net/free-vector/paper-cut-shapes-background-halftone_52683-28628.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}