From 26fb4e3d80d2bd7a64ba08bdfbff2cb7e55fba34 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 11:15:58 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1434 +------------------------------------------- 1 file changed, 7 insertions(+), 1427 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ab5baa9..3c20b4e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1439 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Poppins } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const poppins = Poppins({ - variable: "--font-poppins", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "FundBridge - Investor-Founder Matching Platform Bangladesh", - description: "Connect founders with smart investors in Bangladesh. Access verified deal flow, tiered verification, AI matching, and secure transactions. Build your startup, find funding.", - keywords: "investor matching, startup funding Bangladesh, founder investment platform, venture capital BD, startup ecosystem", - openGraph: { - title: "FundBridge - Connect Founders with Smart Investors", - description: "Bangladesh's leading investor-founder matching platform. Transparent, verified, and secure fundraising.", - siteName: "FundBridge", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhomxxyRGZUg9TnMrPmCBXT6L3/a-dynamic-startup-founding-team-having-a-1773054469093-d1cf8020.png", - alt: "FundBridge - Investor Founder Platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "FundBridge - Smart Investor Matching", - description: "Connect with the right funding partner. Bangladesh's transparent startup investment platform.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhomxxyRGZUg9TnMrPmCBXT6L3/a-dynamic-startup-founding-team-having-a-1773054469093-d1cf8020.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "FundBridge - Connect Founders with Smart Investors", description: "FundBridge brings together ambitious entrepreneurs and sophisticated investors in Bangladesh. Build your startup, find strategic funding, and grow together in a verified, transparent ecosystem."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -