Update src/app/layout.tsx

This commit is contained in:
2026-03-04 13:48:26 +00:00
parent c8462666e6
commit 790b3f60af

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1423,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}