From 790b3f60af38867a1146d618eec9ba03e3e4ee3a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 13:48:26 +0000 Subject: [PATCH 1/6] Update src/app/layout.tsx --- src/app/layout.tsx | 60 ++++++++-------------------------------------- 1 file changed, 10 insertions(+), 50 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 852a0cb..dbcc15c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,61 +1,22 @@ import type { Metadata } from "next"; -import { Source_Sans_3 } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "InvestTech Capital | Software Investment Fund", - description: "Strategic software investment fund managing $2.8B+ AUM. We partner with high-potential software companies in AI, SaaS, Fintech, and Developer Tools for exponential growth.", - keywords: "software investment, venture capital, AI investment, SaaS funding, fintech investment, venture fund", - metadataBase: new URL("https://investtech.com"), - alternates: { - canonical: "https://investtech.com", - }, - openGraph: { - title: "InvestTech Capital | Software Investment Fund", - description: "Strategic software investment fund managing $2.8B+ AUM. Partner with us for growth capital and expertise.", - url: "https://investtech.com", - siteName: "InvestTech Capital", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/a-modern-software-dashboard-interface-wi-1772553611162-73b27e4b.png", - alt: "A modern software dashboard interface with multiple analytical panels, charts, and real-time data vi", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "InvestTech Capital | Software Investment Fund", - description: "Strategic software investment fund managing $2.8B+ AUM in transformative technology companies.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_30ordogEOn7VO6LZdIWb5atLXky/a-modern-software-dashboard-interface-wi-1772553611162-73b27e4b.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "InvestTech Capital", description: "Software investment opportunities that scale"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}