Files
774fb082-9f08-43ac-a349-18e…/src/app/services/page.tsx
Nikolay Pecheniev a2c1b11805 Initial commit
2026-01-23 16:39:17 +02:00

192 lines
7.9 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import PricingCardFive from '@/components/sections/pricing/PricingCardFive';
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { Briefcase, User, Shield, Building2, CheckCircle } from 'lucide-react';
import Link from 'next/link';
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="largeSmallSizeLargeTitles"
background="circleGradient"
cardStyle="subtle-shadow"
primaryButtonStyle="shadow"
secondaryButtonStyle="solid"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="StartUp Capital"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "Insights", id: "/insights" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
</div>
<div id="products" data-section="products">
<ProductCardOne
title="Our Investment Solutions"
description="Carefully crafted investment vehicles designed to match your financial objectives, risk tolerance, and investment horizon. Each fund is managed by our experienced team of investment professionals."
tag="Investment Products"
tagIcon={Briefcase}
textboxLayout="default"
useInvertedBackground="noInvert"
animationType="blur-reveal"
gridVariant="three-columns-all-equal-width"
products={[
{ id: "1", name: "Venture Growth Fund", price: "From $50K", imageSrc: "https://img.b2bpic.net/free-photo/flat-lay-business-chart-wood-background_1150-6649.jpg", imageAlt: "Venture Growth Fund investment portfolio" },
{ id: "2", name: "Private Equity Plus", price: "From $100K", imageSrc: "https://img.b2bpic.net/free-vector/investment-flat-banner-set_1284-7026.jpg", imageAlt: "Private Equity investment opportunities" },
{ id: "3", name: "Global Opportunities", price: "From $75K", imageSrc: "https://img.b2bpic.net/free-vector/business-growth-money-savings-statistics_24877-49814.jpg", imageAlt: "Global investment opportunities" }
]}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardFive
title="Investment Structure & Pricing"
description="Transparent fee structures designed to align our interests with yours. Choose the investment tier that matches your goals and commitment level."
tag="Fee Structure"
textboxLayout="default"
useInvertedBackground="invertDefault"
animationType="slide-up"
plans={[
{
id: "starter",
tag: "Individual Investor",
tagIcon: User,
price: "2.0%",
period: "Management Fee",
description: "Ideal for individual investors seeking diversified exposure to high-growth opportunities.",
button: { text: "Get Started", href: "/contact" },
featuresTitle: "What's Included:",
features: [
"Access to Venture Growth Fund",
"Quarterly performance reports",
"Annual investor meetings",
"Professional fund management"
]
},
{
id: "professional",
tag: "Accredited Investors",
tagIcon: Shield,
price: "1.5%",
period: "Management Fee",
description: "For accredited investors with enhanced portfolio access and strategic advisory services.",
button: { text: "Schedule Consultation", href: "/contact" },
featuresTitle: "What's Included:",
features: [
"All Starter benefits",
"Access to Private Equity Plus",
"Monthly investor briefings",
"Dedicated relationship manager",
"Co-investment opportunities"
]
},
{
id: "institutional",
tag: "Institutional Partners",
tagIcon: Building2,
price: "Custom",
period: "Negotiable",
description: "Tailored solutions for institutional investors and large capital allocations.",
button: { text: "Contact Our Team", href: "/contact" },
featuresTitle: "What's Included:",
features: [
"All Professional benefits",
"Global Opportunities Fund access",
"Quarterly advisory board seats",
"Custom portfolio construction",
"Priority deal flow access"
]
}
]}
/>
</div>
<div id="service-advantages" data-section="service-advantages">
<FeatureCardSixteen
title="The StartUp Capital Advantage"
description="Our comprehensive approach combines institutional-quality investment management with personalized service and transparent reporting."
tag="Service Excellence"
tagIcon={CheckCircle}
textboxLayout="default"
useInvertedBackground="noInvert"
negativeCard={{
items: [
"Generic investment products with limited customization",
"Minimal investor communication and reporting",
"Restricted access to high-quality deal flow",
"High fees with mediocre performance"
]
}}
positiveCard={{
items: [
"Tailored investment strategies for every client tier",
"Regular communication with detailed performance insights",
"Exclusive access to pre-screened opportunities",
"Competitive fees with industry-leading returns"
]
}}
animationType="slide-up"
/>
</div>
<FooterSimple
columns={[
{
title: "Company",
items: [
{ label: "About Us", href: "/about" },
{ label: "Our Team", href: "/about" },
{ label: "Careers", href: "/contact" },
{ label: "Blog", href: "/insights" }
]
},
{
title: "Investments",
items: [
{ label: "Venture Growth", href: "/services" },
{ label: "Private Equity", href: "/services" },
{ label: "Global Fund", href: "/services" },
{ label: "Performance", href: "/" }
]
},
{
title: "Resources",
items: [
{ label: "Investor FAQ", href: "/#faq" },
{ label: "Documentation", href: "/contact" },
{ label: "Market Insights", href: "/insights" },
{ label: "Contact Us", href: "/contact" }
]
},
{
title: "Legal",
items: [
{ label: "Privacy Policy", href: "/" },
{ label: "Terms of Service", href: "/" },
{ label: "Compliance", href: "/" },
{ label: "Disclosures", href: "/" }
]
}
]}
bottomLeftText="© 2025 StartUp Capital. All rights reserved."
bottomRightText="Investing for Tomorrow's Growth"
/>
</ThemeProvider>
);
}