Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c4f3696b0f | |||
| 06d6509c7c | |||
| 7eaf4c80d5 | |||
| 4cfae0f99d | |||
| 2a93808397 | |||
| a4fffdb5ee | |||
| a869a1efd4 |
@@ -101,4 +101,4 @@ export default function BlogPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,42 +1,26 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville", subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "CapitalFlow - AI-Powered Tech Investment Platform", description: "Discover high-growth tech opportunities with AI-driven insights. Real-time analytics, institutional-grade tools, and expert guidance for modern investors.", keywords: "tech investment, venture capital, AI analytics, portfolio management, fintech, investment platform, startup investing", openGraph: {
|
||||
title: "CapitalFlow - AI-Powered Tech Investment Platform", description: "Intelligent capital allocation for the modern investor. AI-driven insights and real-time analytics.", siteName: "CapitalFlow", type: "website"
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "CapitalFlow - AI-Powered Tech Investment Platform", description: "Transform your investment strategy with institutional-grade AI tools"
|
||||
}
|
||||
};
|
||||
title: "CapitalFlow", description: "Intelligent Capital Allocation for the Modern Investor"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.variable}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1404,7 +1388,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -266,4 +266,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -258,4 +258,4 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -135,4 +135,4 @@ export default function ShopPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,21 +2,21 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #00feff;;;;;;;;;;
|
||||
--card: #ffff00;;;;;;;;;;
|
||||
--foreground: #00f763;;;;;;;;;;
|
||||
--primary-cta: #fa00ff;;;;;;;;;;
|
||||
--secondary-cta: #ff0000;;;;;;;;;;
|
||||
--accent: #0008ff;;;;;;;;;;
|
||||
--background-accent: #00ffaa;;;;;;;;;; */
|
||||
/* --background: #020617;;;;;;;;;;
|
||||
--card: #0f172a;;;;;;;;;;
|
||||
--foreground: #e2e8f0;;;;;;;;;;
|
||||
--primary-cta: #c4d8f9;;;;;;;;;;
|
||||
--secondary-cta: #041633;;;;;;;;;;
|
||||
--accent: #2d30f3;;;;;;;;;;
|
||||
--background-accent: #1d4ed8;;;;;;;;;; */
|
||||
|
||||
--background: #00feff;;;;;;;;;;
|
||||
--card: #ffff00;;;;;;;;;;
|
||||
--foreground: #00f763;;;;;;;;;;
|
||||
--primary-cta: #fa00ff;;;;;;;;;;
|
||||
--secondary-cta: #ff0000;;;;;;;;;;
|
||||
--accent: #0008ff;;;;;;;;;;
|
||||
--background-accent: #00ffaa;;;;;;;;;;
|
||||
--background: #020617;;;;;;;;;;
|
||||
--card: #0f172a;;;;;;;;;;
|
||||
--foreground: #e2e8f0;;;;;;;;;;
|
||||
--primary-cta: #c4d8f9;;;;;;;;;;
|
||||
--secondary-cta: #041633;;;;;;;;;;
|
||||
--accent: #2d30f3;;;;;;;;;;
|
||||
--background-accent: #1d4ed8;;;;;;;;;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user