32 Commits

Author SHA1 Message Date
46c7636d02 Update src/app/page.tsx 2026-02-20 12:49:09 +00:00
0d7a0f655f Update src/app/layout.tsx 2026-02-20 12:49:08 +00:00
d93fd75bac Merge version_10 into main
Merge version_10 into main
2026-02-20 12:47:18 +00:00
3ec94d456f Merge version_9 into main
Merge version_9 into main
2026-02-20 12:47:13 +00:00
5622e940ac Update src/app/page.tsx 2026-02-20 12:47:10 +00:00
2ae6a7f767 Update src/app/page.tsx 2026-02-20 12:47:09 +00:00
9a0e5bb53a Update src/app/layout.tsx 2026-02-20 12:47:09 +00:00
dd7d91496b Update src/app/layout.tsx 2026-02-20 12:47:08 +00:00
5a8527d95b Update src/app/page.tsx 2026-02-20 12:23:26 +00:00
c38d8f1da1 Merge version_7 into main
Merge version_7 into main
2026-02-20 10:56:35 +00:00
c04d6a49ac Update src/app/page.tsx 2026-02-20 10:56:30 +00:00
0aeb9bafc5 Merge version_7 into main
Merge version_7 into main
2026-02-20 10:54:46 +00:00
6c9d0492eb Update src/app/page.tsx 2026-02-20 10:54:41 +00:00
fd9ad7cf34 Merge version_6 into main
Merge version_6 into main
2026-02-20 10:05:13 +00:00
257c477c3f Update theme colors 2026-02-20 10:05:07 +00:00
57ef7569b2 Merge version_6 into main
Merge version_6 into main
2026-02-20 10:04:38 +00:00
5a2ff67adb Update src/app/page.tsx 2026-02-20 10:04:33 +00:00
bb39b52332 Update src/app/layout.tsx 2026-02-20 10:04:32 +00:00
10011aee43 Merge version_6 into main
Merge version_6 into main
2026-02-20 08:07:04 +00:00
b07a64ecdb Update src/app/page.tsx 2026-02-20 08:07:00 +00:00
d0a87b7517 Update src/app/layout.tsx 2026-02-20 08:06:59 +00:00
f2846797f6 Merge version_5 into main
Merge version_5 into main
2026-02-20 07:52:14 +00:00
c4f3696b0f Update src/app/styles/variables.css 2026-02-20 07:52:09 +00:00
06d6509c7c Update src/app/shop/page.tsx 2026-02-20 07:52:09 +00:00
7eaf4c80d5 Update src/app/shop/[id]/page.tsx 2026-02-20 07:52:08 +00:00
4cfae0f99d Update src/app/page.tsx 2026-02-20 07:52:07 +00:00
2a93808397 Update src/app/layout.tsx 2026-02-20 07:52:06 +00:00
a4fffdb5ee Update src/app/blog/page.tsx 2026-02-20 07:52:05 +00:00
a869a1efd4 Merge version_4 into main
Merge version_4 into main
2026-02-20 07:49:01 +00:00
9a1ee6188b Update src/app/page.tsx 2026-02-20 07:48:57 +00:00
ad8efa99ca Merge version_3 into main
Merge version_3 into main
2026-02-20 07:46:29 +00:00
ceea46c2d5 Merge version_3 into main
Merge version_3 into main
2026-02-20 07:42:42 +00:00
6 changed files with 41 additions and 80 deletions

View File

@@ -101,4 +101,4 @@ export default function BlogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -1,42 +1,27 @@
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"
};
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 +1389,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import HeroSignup from '@/components/sections/hero/HeroSignup';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
@@ -42,38 +42,15 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardCarousel
title="Intelligent Capital Allocation for the Modern Investor"
<HeroSignup
title="Intelligent Capital Allocation"
description="Harness AI-driven insights and real-time analytics to discover high-growth tech opportunities. Our platform empowers investors with institutional-grade tools and market intelligence."
tag="AI-Powered TECH"
tagIcon={Zap}
background={{ variant: "sparkles-gradient" }}
mediaItems={[
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/a-modern-clean-investment-dashboard-inte-1771523628087-25082175.png?_wi=1", imageAlt: "Investment dashboard interface"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/abstract-representation-of-ai-powered-fi-1771523635581-19300fba.png", imageAlt: "AI analysis visualization"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/modern-cybersecurity-visualization-featu-1771523648669-f3cbc54a.png", imageAlt: "Security infrastructure"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/tmp/tech-1771573591276-60e72ecc.png", imageAlt: "Real-time market data"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/professional-business-team-in-modern-off-1771523657572-9038b5d6.png", imageAlt: "Investment team collaboration"
},
{
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/a-modern-clean-investment-dashboard-inte-1771523628087-25082175.png?_wi=2", imageAlt: "Portfolio management dashboard"
}
]}
buttons={[
{ text: "Start Investing", href: "pricing" },
{ text: "Book a Demo", href: "contact" }
]}
tagAnimation="blur-reveal"
buttonAnimation="slide-up"
inputPlaceholder="Enter your email"
buttonText="Get Early Access"
onSubmit={(email) => console.log('Email:', email)}
/>
</div>
@@ -100,7 +77,7 @@ export default function LandingPage() {
"Sub-second data updates", "Multi-asset class tracking", "Portfolio performance monitoring", "Custom alert systems"
],
buttons: [
{ text: "Explore Platform", href: "pricing" }
{ text: "Explore Platform", href: "#pricing" }
]
},
{
@@ -121,15 +98,15 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal"
animationType="slide-up"
metrics={[
{
id: "3", value: "45%", title: "Average ROI", description: "5-year performance on portfolio exits", icon: BarChart3
},
{
id: "1", value: "3.2B", title: "Assets Under Management", description: "Trusted by institutional investors globally", icon: TrendingUp
},
{
id: "2", value: "847", title: "Companies Funded", description: "Portfolio companies across tech sectors", icon: Rocket
},
{
id: "3", value: "45%", title: "Average ROI", description: "5-year performance on portfolio exits", icon: BarChart3
},
{
id: "4", value: "98.7%", title: "Client Satisfaction", description: "Highest rated investment platform", icon: Star
}
@@ -164,7 +141,7 @@ export default function LandingPage() {
{
id: "starter", badge: "Starter Fund", badgeIcon: Zap,
price: "$10K/month", subtitle: "Perfect for emerging investors", buttons: [
{ text: "Start Now", href: "contact" },
{ text: "Start Now", href: "#contact" },
{ text: "Learn More", href: "#" }
],
features: [
@@ -174,7 +151,7 @@ export default function LandingPage() {
{
id: "professional", badge: "Professional Growth", badgeIcon: Sparkles,
price: "$50K/month", subtitle: "Ideal for institutional investors", buttons: [
{ text: "Get Started", href: "contact" },
{ text: "Get Started", href: "#contact" },
{ text: "Schedule Demo", href: "#" }
],
features: [
@@ -184,7 +161,7 @@ export default function LandingPage() {
{
id: "enterprise", badge: "Enterprise Access", badgeIcon: Crown,
price: "Custom", subtitle: "For mega-funds and enterprises", buttons: [
{ text: "Contact Sales", href: "contact" },
{ text: "Contact Sales", href: "#contact" },
{ text: "Enterprise Brief", href: "#" }
],
features: [
@@ -289,4 +266,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -258,4 +258,4 @@ export default function ProductPage({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -135,4 +135,4 @@ export default function ShopPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -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: #050012;;;;;;;;;;;
--card: #040121;;;;;;;;;;;
--foreground: #f0e6ff;;;;;;;;;;;
--primary-cta: #c89bff;;;;;;;;;;;
--secondary-cta: #1d123b;;;;;;;;;;;
--accent: #684f7b;;;;;;;;;;;
--background-accent: #65417c;;;;;;;;;;; */
--background: #00feff;;;;;;;;;;
--card: #ffff00;;;;;;;;;;
--foreground: #00f763;;;;;;;;;;
--primary-cta: #fa00ff;;;;;;;;;;
--secondary-cta: #ff0000;;;;;;;;;;
--accent: #0008ff;;;;;;;;;;
--background-accent: #00ffaa;;;;;;;;;;
--background: #050012;;;;;;;;;;;
--card: #040121;;;;;;;;;;;
--foreground: #f0e6ff;;;;;;;;;;;
--primary-cta: #c89bff;;;;;;;;;;;
--secondary-cta: #1d123b;;;;;;;;;;;
--accent: #684f7b;;;;;;;;;;;
--background-accent: #65417c;;;;;;;;;;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);