201 lines
9.2 KiB
TypeScript
201 lines
9.2 KiB
TypeScript
"use client";
|
|
|
|
import Link from 'next/link';
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
|
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
|
|
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
|
import { Briefcase, Star, Award } from 'lucide-react';
|
|
|
|
export default function PortfolioPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="shift-hover"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="pill"
|
|
contentWidth="compact"
|
|
sizing="mediumLargeSizeMediumTitles"
|
|
background="floatingGradient"
|
|
cardStyle="outline"
|
|
primaryButtonStyle="shadow"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="normal"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleCentered
|
|
navItems={[
|
|
{ name: 'Home', id: '/' },
|
|
{ name: 'About', id: '/about' },
|
|
{ name: 'Portfolio', id: '/portfolio' },
|
|
{ name: 'Contact', id: '/contact' }
|
|
]}
|
|
button={{ text: 'Start Investing', href: '/contact' }}
|
|
brandName="CapitalVenture"
|
|
/>
|
|
</div>
|
|
|
|
<div id="portfolio" data-section="portfolio">
|
|
<ProductCardOne
|
|
title="Featured Investments"
|
|
description="Meet the innovative companies transforming technology and creating market-defining value across our diversified portfolio."
|
|
tag="Portfolio Highlights"
|
|
tagIcon={Briefcase}
|
|
textboxLayout="default"
|
|
animationType="slide-up"
|
|
useInvertedBackground={false}
|
|
gridVariant="three-columns-all-equal-width"
|
|
products={[
|
|
{
|
|
id: '1',
|
|
name: 'CloudScale AI',
|
|
price: '$450M Valuation',
|
|
imageSrc: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/an-artificial-intelligence-or-machine-le-1771525037188-ef3766ec.png?_wi=3',
|
|
imageAlt: 'AI Platform'
|
|
},
|
|
{
|
|
id: '2',
|
|
name: 'FinFlow Systems',
|
|
price: '$320M Valuation',
|
|
imageSrc: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/a-fintech-payment-or-banking-solution-in-1771525046106-54a17a93.png?_wi=3',
|
|
imageAlt: 'Fintech Solution'
|
|
},
|
|
{
|
|
id: '3',
|
|
name: 'DataVault Pro',
|
|
price: '$280M Valuation',
|
|
imageSrc: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/a-modern-saas-application-interface-with-1771525030074-f14c851b.png?_wi=4',
|
|
imageAlt: 'SaaS Platform'
|
|
}
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="features" data-section="features">
|
|
<FeatureCardTwentyThree
|
|
title="Investment Services"
|
|
description="Comprehensive investment solutions designed to help you navigate the technology landscape and build lasting value."
|
|
tag="Our Expertise"
|
|
tagIcon={Star}
|
|
textboxLayout="default"
|
|
animationType="slide-up"
|
|
useInvertedBackground={true}
|
|
features={[
|
|
{
|
|
id: '1',
|
|
title: 'Seed to Scale Funding',
|
|
tags: ['Early Stage', 'Growth Capital'],
|
|
imageSrc: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/a-modern-saas-application-interface-with-1771525030074-f14c851b.png?_wi=5',
|
|
imageAlt: 'SaaS Platform'
|
|
},
|
|
{
|
|
id: '2',
|
|
title: 'Strategic Advisory & Operations',
|
|
tags: ['Guidance', 'Excellence'],
|
|
imageSrc: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/a-professional-image-showing-investment--1771525021240-525f2d0e.png?_wi=4',
|
|
imageAlt: 'Investment Process'
|
|
},
|
|
{
|
|
id: '3',
|
|
title: 'Market Intelligence & Research',
|
|
tags: ['Insights', 'Data-Driven'],
|
|
imageSrc: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/a-sophisticated-investment-dashboard-int-1771524971703-15a76f33.png?_wi=3',
|
|
imageAlt: 'Investment Dashboard'
|
|
},
|
|
{
|
|
id: '4',
|
|
title: 'Network & Partnership Access',
|
|
tags: ['Connections', 'Opportunities'],
|
|
imageSrc: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/a-stunning-technology-startup-office-env-1771524982427-6eed5562.png?_wi=3',
|
|
imageAlt: 'Startup Office Environment'
|
|
}
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardFive
|
|
title="What Our Partners Say"
|
|
description="Hear from the founders and entrepreneurs who've transformed their visions into market-leading companies with our support."
|
|
tag="Success Stories"
|
|
tagIcon={Award}
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
testimonials={[
|
|
{
|
|
id: '1',
|
|
name: 'Sarah Chen, CEO of CloudScale AI',
|
|
date: 'Date: 15 November 2024',
|
|
title: 'The best investment partner we could ask for',
|
|
quote: 'CapitalVenture didn\'t just provide capital—they provided strategic guidance that accelerated our growth by three years. Their network connections opened doors we never knew existed.',
|
|
tag: 'Series B',
|
|
avatarSrc: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/professional-headshot-of-a-successful-fe-1771525065490-ddc06438.png',
|
|
imageSrc: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/an-artificial-intelligence-or-machine-le-1771525037188-ef3766ec.png?_wi=4',
|
|
avatarAlt: 'Sarah Chen',
|
|
imageAlt: 'AI Platform'
|
|
},
|
|
{
|
|
id: '2',
|
|
name: 'Michael Rodriguez, Founder of FinFlow Systems',
|
|
date: 'Date: 8 October 2024',
|
|
title: 'Exceptional execution and partnership',
|
|
quote: 'From day one, the team understood our vision and challenged us to think bigger. Their operational expertise helped us scale from 20 to 200 employees in 18 months.',
|
|
tag: 'Series A',
|
|
avatarSrc: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/professional-headshot-of-a-successful-ve-1771525051868-9cb03eec.png',
|
|
imageSrc: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/a-fintech-payment-or-banking-solution-in-1771525046106-54a17a93.png?_wi=4',
|
|
avatarAlt: 'Michael Rodriguez',
|
|
imageAlt: 'Fintech Solution'
|
|
},
|
|
{
|
|
id: '3',
|
|
name: 'Priya Sharma, CTO of DataVault Pro',
|
|
date: 'Date: 22 September 2024',
|
|
title: 'Transformational capital and counsel',
|
|
quote: 'Beyond funding, CapitalVenture provided the strategic clarity and technical expertise we needed to dominate our market. They\'re true partners in success.',
|
|
tag: 'Seed Round',
|
|
avatarSrc: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/professional-headshot-of-a-tech-ceo-or-f-1771525058934-59ecb7db.png',
|
|
imageSrc: 'https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SgGlSmvaVv2SYOkECykbr8Q49/a-modern-saas-application-interface-with-1771525030074-f14c851b.png?_wi=6',
|
|
avatarAlt: 'Priya Sharma',
|
|
imageAlt: 'SaaS Platform'
|
|
}
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<FooterBase
|
|
logoText="CapitalVenture"
|
|
copyrightText="© 2025 CapitalVenture Partners. All rights reserved."
|
|
columns={[
|
|
{
|
|
title: 'Company',
|
|
items: [
|
|
{ label: 'Home', href: '/' },
|
|
{ label: 'About Us', href: '/about' },
|
|
{ label: 'Our Portfolio', href: '/portfolio' },
|
|
{ label: 'Contact', href: '/contact' }
|
|
]
|
|
},
|
|
{
|
|
title: 'Resources',
|
|
items: [
|
|
{ label: 'Investment Process', href: '#' },
|
|
{ label: 'Market Insights', href: '#' },
|
|
{ label: 'News & Updates', href: '#' },
|
|
{ label: 'Careers', href: '#' }
|
|
]
|
|
},
|
|
{
|
|
title: 'Legal',
|
|
items: [
|
|
{ label: 'Privacy Policy', href: '#' },
|
|
{ label: 'Terms of Service', href: '#' },
|
|
{ label: 'SEC Disclosures', href: '#' },
|
|
{ label: 'Contact Us', href: '/contact' }
|
|
]
|
|
}
|
|
]}
|
|
/>
|
|
</ThemeProvider>
|
|
);
|
|
} |