Compare commits
74 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 46c7636d02 | |||
| 0d7a0f655f | |||
| d93fd75bac | |||
| 3ec94d456f | |||
| 5622e940ac | |||
| 2ae6a7f767 | |||
| 9a0e5bb53a | |||
| dd7d91496b | |||
| 5a8527d95b | |||
| c38d8f1da1 | |||
| c04d6a49ac | |||
| 0aeb9bafc5 | |||
| 6c9d0492eb | |||
| fd9ad7cf34 | |||
| 257c477c3f | |||
| 57ef7569b2 | |||
| 5a2ff67adb | |||
| bb39b52332 | |||
| 10011aee43 | |||
| b07a64ecdb | |||
| d0a87b7517 | |||
| f2846797f6 | |||
| c4f3696b0f | |||
| 06d6509c7c | |||
| 7eaf4c80d5 | |||
| 4cfae0f99d | |||
| 2a93808397 | |||
| a4fffdb5ee | |||
| a869a1efd4 | |||
| 9a1ee6188b | |||
| ad8efa99ca | |||
| 5bc910ee11 | |||
| ceea46c2d5 | |||
| 8adb16d63f | |||
| d19ba23f01 | |||
| 64b0363a57 | |||
| 8ce318426e | |||
| 04ed101fc8 | |||
| 84cc2df732 | |||
| 4f34370f7d | |||
| 728657e8aa | |||
| a4370d23ab | |||
| 56fb0c67b0 | |||
| d18e9610a2 | |||
| 8494b47163 | |||
| a088061b89 | |||
| 298e08ca43 | |||
| 766dc8d948 | |||
| 661dcc32c1 | |||
| 3bad23d832 | |||
| a16d5ed4ac | |||
| 297c014763 | |||
| c96975911f | |||
| 6bddfaca9c | |||
| d3e7cca9b7 | |||
| 0ff54b19e1 | |||
| 2681b0abe3 | |||
| 669c452887 | |||
| 5ca86adf83 | |||
| 4108c4daa8 | |||
| 1ac14b6814 | |||
| 6f205dfd5b | |||
| 1f5eb7560a | |||
| 2bd0b7b74c | |||
| a6e540a069 | |||
| 50f0f3daa1 | |||
| 56bf3ce2a3 | |||
| 5f97e0ab82 | |||
| 31281c52f2 | |||
| 8dae594d76 | |||
| ca60f1ca2c | |||
| e954485376 | |||
| 87396f0d0e | |||
| 2f32bcda28 |
@@ -28,7 +28,6 @@ export default function BlogPage() {
|
||||
<NavbarStyleFullscreen
|
||||
brandName="CapitalFlow"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Platform", id: "features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "About", id: "about" },
|
||||
@@ -102,4 +101,4 @@ export default function BlogPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,51 +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";
|
||||
import { Work_Sans } from "next/font/google";
|
||||
import { Source_Sans_3 } from "next/font/google";
|
||||
|
||||
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"
|
||||
};
|
||||
|
||||
const workSans = Work_Sans({
|
||||
variable: "--font-work-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${workSans.variable} ${sourceSans3.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.variable}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1413,7 +1389,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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 Investment"
|
||||
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/real-time-market-data-visualization-show-1771523642014-e6dd0793.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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -85,13 +85,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<NavbarStyleFullscreen
|
||||
brandName="CapitalFlow"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Platform", id: "features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Blog", id: "blog" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
bottomLeftText="Global Tech Investors"
|
||||
bottomRightText="hello@capitalflow.io"
|
||||
@@ -125,13 +123,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<NavbarStyleFullscreen
|
||||
brandName="CapitalFlow"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Platform", id: "features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Blog", id: "blog" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
bottomLeftText="Global Tech Investors"
|
||||
bottomRightText="hello@capitalflow.io"
|
||||
@@ -172,13 +168,11 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
<NavbarStyleFullscreen
|
||||
brandName="CapitalFlow"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Platform", id: "features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Blog", id: "blog" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
bottomLeftText="Global Tech Investors"
|
||||
bottomRightText="hello@capitalflow.io"
|
||||
@@ -264,4 +258,4 @@ export default function ProductPage({ params }: ProductPageProps) {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,13 +35,11 @@ export default function ShopPage() {
|
||||
<NavbarStyleFullscreen
|
||||
brandName="CapitalFlow"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Platform", id: "features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Blog", id: "blog" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
bottomLeftText="Global Tech Investors"
|
||||
bottomRightText="hello@capitalflow.io"
|
||||
@@ -73,13 +71,11 @@ export default function ShopPage() {
|
||||
<NavbarStyleFullscreen
|
||||
brandName="CapitalFlow"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Platform", id: "features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Blog", id: "blog" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{ name: "Shop", id: "/shop" }
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
bottomLeftText="Global Tech Investors"
|
||||
bottomRightText="hello@capitalflow.io"
|
||||
@@ -139,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: #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);
|
||||
|
||||
Reference in New Issue
Block a user