15 Commits

Author SHA1 Message Date
a16d5ed4ac Update src/app/page.tsx 2026-02-19 18:42:20 +00:00
c96975911f Update src/app/page.tsx 2026-02-19 18:39:22 +00:00
d3e7cca9b7 Update src/app/shop/page.tsx 2026-02-19 18:36:25 +00:00
0ff54b19e1 Update src/app/shop/[id]/page.tsx 2026-02-19 18:36:24 +00:00
669c452887 Update src/app/shop/page.tsx 2026-02-19 18:33:33 +00:00
5ca86adf83 Update src/app/page.tsx 2026-02-19 18:33:32 +00:00
1ac14b6814 Update src/app/page.tsx 2026-02-19 18:30:35 +00:00
1f5eb7560a Update src/app/shop/page.tsx 2026-02-19 18:27:40 +00:00
2bd0b7b74c Update src/app/shop/[id]/page.tsx 2026-02-19 18:27:39 +00:00
a6e540a069 Update src/app/page.tsx 2026-02-19 18:27:38 +00:00
56bf3ce2a3 Update src/app/page.tsx 2026-02-19 18:19:19 +00:00
31281c52f2 Update src/app/page.tsx 2026-02-19 18:16:18 +00:00
ca60f1ca2c Update src/app/page.tsx 2026-02-19 18:13:19 +00:00
87396f0d0e Update src/app/page.tsx 2026-02-19 18:10:23 +00:00
2f32bcda28 Merge version_1 into main
Merge version_1 into main
2026-02-19 17:57:19 +00:00
3 changed files with 199 additions and 200 deletions

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 HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
@@ -10,7 +10,7 @@ import PricingCardTwo from '@/components/sections/pricing/PricingCardTwo';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { BarChart3, Crown, Rocket, Sparkles, Star, TrendingUp, Zap } from "lucide-react";
import { BarChart3, Crown, Rocket, Sparkles, Star, TrendingUp, Zap, DollarSign, Users, Globe } from "lucide-react";
export default function LandingPage() {
return (
@@ -42,32 +42,36 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardCarousel
<HeroBillboardDashboard
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 Investment"
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"
}
]}
dashboard={{
title: "Portfolio Dashboard", stats: [
{ values: ["$2.4M"], icon: DollarSign },
{ values: ["127"], icon: TrendingUp },
{ values: ["+18.5%"], icon: BarChart3 }
],
logoIcon: Zap,
sidebarItems: [
{ icon: BarChart3 },
{ icon: TrendingUp },
{ icon: Sparkles },
{ icon: Users }
],
buttons: [
{ text: "View Details", href: "#" },
{ text: "Add Investment", href: "#" }
],
listItems: [
{ title: "TechCorp Series A", label: "$450K" },
{ title: "AI Startup Fund", label: "$380K" },
{ title: "Green Energy Co", label: "$290K" }
],
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/a-modern-clean-investment-dashboard-inte-1771523628087-25082175.png?_wi=1", searchPlaceholder: "Search investments...", chartTitle: "Portfolio Performance", listTitle: "Recent Investments", imageAlt: "Investment dashboard interface"
}}
buttons={[
{ text: "Start Investing", href: "pricing" },
{ text: "Book a Demo", href: "contact" }

View File

@@ -82,21 +82,20 @@ export default function ProductPage({ params }: ProductPageProps) {
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<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" }
]}
bottomLeftText="Global Tech Investors"
bottomRightText="hello@capitalflow.io"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
<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" }
]}
bottomLeftText="Global Tech Investors"
bottomRightText="hello@capitalflow.io"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
<main className="min-h-screen flex items-center justify-center pt-20">
<p className="text-foreground">Loading product...</p>
@@ -130,8 +129,7 @@ export default function ProductPage({ params }: ProductPageProps) {
{ 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"
@@ -169,97 +167,96 @@ export default function ProductPage({ params }: ProductPageProps) {
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<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" }
]}
bottomLeftText="Global Tech Investors"
bottomRightText="hello@capitalflow.io"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
<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" }
]}
bottomLeftText="Global Tech Investors"
bottomRightText="hello@capitalflow.io"
button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/>
</div>
<div id="productDetailCard" data-section="productDetailCard">
<ProductDetailCard
layout="page"
name={product.name}
price={product.price}
salePrice={meta.salePrice}
rating={product.rating || 0}
description={product.description}
images={images}
variants={variants.length > 0 ? variants : undefined}
quantity={quantityVariant}
ribbon={meta.ribbon}
inventoryStatus={meta.inventoryStatus}
inventoryQuantity={meta.inventoryQuantity}
sku={meta.sku}
buttons={[
{ text: "Add To Cart", onClick: handleAddToCart },
{ text: "Buy Now", onClick: handleBuyNow },
]}
/>
<ProductDetailCard
layout="page"
name={product.name}
price={product.price}
salePrice={meta.salePrice}
rating={product.rating || 0}
description={product.description}
images={images}
variants={variants.length > 0 ? variants : undefined}
quantity={quantityVariant}
ribbon={meta.ribbon}
inventoryStatus={meta.inventoryStatus}
inventoryQuantity={meta.inventoryQuantity}
sku={meta.sku}
buttons={[
{ text: "Add To Cart", onClick: handleAddToCart },
{ text: "Buy Now", onClick: handleBuyNow },
]}
/>
</div>
<div id="productCart" data-section="productCart">
<ProductCart
isOpen={cartOpen}
onClose={() => setCartOpen(false)}
items={cartItems}
onQuantityChange={updateQuantity}
onRemove={removeItem}
total={`$${cartTotal}`}
buttons={[
{
text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout,
},
]}
/>
<ProductCart
isOpen={cartOpen}
onClose={() => setCartOpen(false)}
items={cartItems}
onQuantityChange={updateQuantity}
onRemove={removeItem}
total={`$${cartTotal}`}
buttons={[
{
text: isCheckoutLoading ? "Processing..." : "Check Out", onClick: handleCheckout,
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
{ label: "Security", href: "#" },
{ label: "API Docs", href: "#" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Contact", href: "#contact" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Compliance", href: "#" },
{ label: "Disclosures", href: "#" }
]
},
{
title: "Connect", items: [
{ label: "Twitter", href: "https://twitter.com" },
{ label: "LinkedIn", href: "https://linkedin.com" },
{ label: "GitHub", href: "https://github.com" },
{ label: "Discord", href: "https://discord.com" }
]
}
]}
bottomLeftText="© 2025 CapitalFlow. All rights reserved."
bottomRightText="Regulated investment platform | FINRA & SEC compliant"
/>
<FooterSimple
columns={[
{
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
{ label: "Security", href: "#" },
{ label: "API Docs", href: "#" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Contact", href: "#contact" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Compliance", href: "#" },
{ label: "Disclosures", href: "#" }
]
},
{
title: "Connect", items: [
{ label: "Twitter", href: "https://twitter.com" },
{ label: "LinkedIn", href: "https://linkedin.com" },
{ label: "GitHub", href: "https://github.com" },
{ label: "Discord", href: "https://discord.com" }
]
}
]}
bottomLeftText="© 2025 CapitalFlow. All rights reserved."
bottomRightText="Regulated investment platform | FINRA & SEC compliant"
/>
</div>
</ReactLenis>
</ThemeProvider>

View File

@@ -32,20 +32,19 @@ export default function ShopPage() {
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<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" }
]}
bottomLeftText="Global Tech Investors"
bottomRightText="hello@capitalflow.io"
/>
<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" }
]}
bottomLeftText="Global Tech Investors"
bottomRightText="hello@capitalflow.io"
/>
</div>
<main className="min-h-screen flex items-center justify-center pt-20">
<p className="text-foreground">Loading products...</p>
@@ -70,71 +69,70 @@ export default function ShopPage() {
>
<ReactLenis root>
<div id="navbar" data-section="navbar">
<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" }
]}
bottomLeftText="Global Tech Investors"
bottomRightText="hello@capitalflow.io"
/>
<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" }
]}
bottomLeftText="Global Tech Investors"
bottomRightText="hello@capitalflow.io"
/>
</div>
<div id="productCatalog" data-section="productCatalog">
<ProductCatalog
layout="page"
products={products}
searchValue={search}
onSearchChange={setSearch}
searchPlaceholder="Search products..."
filters={filters}
emptyMessage="No products found"
/>
<ProductCatalog
layout="page"
products={products}
searchValue={search}
onSearchChange={setSearch}
searchPlaceholder="Search products..."
filters={filters}
emptyMessage="No products found"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
{ label: "Security", href: "#" },
{ label: "API Docs", href: "#" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Contact", href: "#contact" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Compliance", href: "#" },
{ label: "Disclosures", href: "#" }
]
},
{
title: "Connect", items: [
{ label: "Twitter", href: "https://twitter.com" },
{ label: "LinkedIn", href: "https://linkedin.com" },
{ label: "GitHub", href: "https://github.com" },
{ label: "Discord", href: "https://discord.com" }
]
}
]}
bottomLeftText="© 2025 CapitalFlow. All rights reserved."
bottomRightText="Regulated investment platform | FINRA & SEC compliant"
/>
<FooterSimple
columns={[
{
title: "Product", items: [
{ label: "Features", href: "#features" },
{ label: "Pricing", href: "#pricing" },
{ label: "Security", href: "#" },
{ label: "API Docs", href: "#" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Blog", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Contact", href: "#contact" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Compliance", href: "#" },
{ label: "Disclosures", href: "#" }
]
},
{
title: "Connect", items: [
{ label: "Twitter", href: "https://twitter.com" },
{ label: "LinkedIn", href: "https://linkedin.com" },
{ label: "GitHub", href: "https://github.com" },
{ label: "Discord", href: "https://discord.com" }
]
}
]}
bottomLeftText="© 2025 CapitalFlow. All rights reserved."
bottomRightText="Regulated investment platform | FINRA & SEC compliant"
/>
</div>
</ReactLenis>
</ThemeProvider>