From 437a4eb75243aeee25aad1bf089e2bfa749c79ca Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Mar 2026 10:42:29 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0077e1c..5ba83bf 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 { Montserrat } 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 { Montserrat } 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 montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "TechShop Capital - Fund II Investment Opportunities", + description: "Back transformative tech founders with TechShop Capital Fund II. 24 portfolio companies, $500M AUM, proven exits. Strategic capital + deep expertise.", + keywords: "venture capital, tech investment, startup funding, VC fund, fund II", + metadataBase: new URL("https://techshopcapital.com"), + alternates: { + canonical: "https://techshopcapital.com", + }, + openGraph: { + title: "TechShop Capital Fund II", + description: "Empowering the next generation of tech founders with strategic capital and unparalleled network access.", + url: "https://techshopcapital.com", + siteName: "TechShop Capital", + type: "website", + images: [ + { + url: "https://techshopcapital.com/og-image.jpg", + alt: "TechShop Capital Fund II", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "TechShop Capital Fund II - Backing Transformative Tech", + description: "Strategic capital and expertise for exceptional founders", + images: ["https://techshopcapital.com/og-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}