Initial commit
This commit is contained in:
92
src/app/portfolio/page.tsx
Normal file
92
src/app/portfolio/page.tsx
Normal file
@@ -0,0 +1,92 @@
|
||||
"use client";
|
||||
|
||||
import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
|
||||
export default function PortfolioPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="mediumSizeLargeTitles"
|
||||
background="floatingGradient"
|
||||
cardStyle="gradient-mesh"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleMinimal
|
||||
brandName="Pitch Drive"
|
||||
button={{
|
||||
text: "Get Started",
|
||||
href: "/contact"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="portfolio" data-section="portfolio">
|
||||
<ProductCardTwo
|
||||
title="Portfolio Highlights"
|
||||
description="Our portfolio companies are solving critical problems in enterprise software, fintech, AI, and sustainable tech across Europe and beyond."
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
brand: "CloudScale",
|
||||
name: "Enterprise Cloud Management",
|
||||
price: "$250M Series D",
|
||||
rating: 5,
|
||||
reviewCount: "47 Enterprise Customers",
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/digital-environment-scene_23-2151873106.jpg",
|
||||
imageAlt: "CloudScale platform"
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
brand: "PayFlow",
|
||||
name: "Cross-Border Payment Platform",
|
||||
price: "$120M Series C",
|
||||
rating: 5,
|
||||
reviewCount: "35 Banking Partners",
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/focused-workaholic-entrepreneur-man-working-overtime-presenting-company-statistics_482257-6363.jpg",
|
||||
imageAlt: "PayFlow fintech solution"
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
brand: "InsightAI",
|
||||
name: "Enterprise AI Analytics",
|
||||
price: "$95M Series B",
|
||||
rating: 5,
|
||||
reviewCount: "24 Fortune 500 Clients",
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/businessman-checking-report-tablet_482257-120320.jpg",
|
||||
imageAlt: "InsightAI platform"
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
brand: "GreenTech",
|
||||
name: "Sustainable Supply Chain",
|
||||
price: "$75M Series B",
|
||||
rating: 5,
|
||||
reviewCount: "12 Major Logistics Partners",
|
||||
imageSrc: "https://img.b2bpic.net/free-photo/people-office-analyzing-checking-finance-graphs_23-2150377138.jpg",
|
||||
imageAlt: "GreenTech solution"
|
||||
}
|
||||
]}
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<FooterLogoReveal
|
||||
logoText="Pitch Drive"
|
||||
logoLineHeight={1.1}
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user