10 Commits

Author SHA1 Message Date
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 33 additions and 73 deletions

View File

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

View File

@@ -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>
);
}
}

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
<HeroSignup
title="Intelligent Capital Allocation for the Modern Investor"
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>
@@ -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: #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);