import React from “react”;
import { Card } from “@/components/ui/card”;
import { Badge } from “@/components/ui/badge”;
import { Building2, TrendingUp, Users, Target, Mail, Phone, Calendar, DollarSign, PieChart, Briefcase } from “lucide-react”;
export default function Presentation() {
// Sample data – replace with actual company data
const companyData = {
name: “Vertex Solutions”,
slogan: “Transforming Enterprise Intelligence”,
logo: “VS”,
elevator: “AI-powered analytics platform that helps mid-market enterprises unlock 10x faster insights from their operational data, reducing decision-making time from weeks to hours.”,
business: {
description: “Vertex Solutions provides a comprehensive SaaS analytics platform designed specifically for mid-market manufacturing and logistics companies. Our proprietary AI engine processes complex operational data in real-time, delivering actionable insights that drive efficiency improvements of 25-40%.”,
market: “The global enterprise analytics market is projected to reach $89B by 2028, growing at 23% CAGR. We target the underserved mid-market segment ($10M-$500M revenue) representing 45% of this opportunity.”,
problem: “Mid-market companies lack affordable, easy-to-implement analytics solutions. Legacy tools are too complex and expensive, while basic BI tools lack predictive capabilities.”
},
figures: {
revenue: “$12.4M”,
revenueGrowth: “+142% YoY”,
ebitda: “$3.8M”,
ebitdaMargin: “31%”,
employees: 47,
marketShare: “8% in target segment”,
yearEstablished: 2019,
customers: 156
},
growth: “Expanding into European markets (Q2 2025) with localized product offerings. Strategic partnerships with major ERP providers to embed our analytics layer, projected to 3x our addressable market. Product roadmap includes predictive maintenance and supply chain optimization modules.”,
team: [
{
name: “Sarah Chen”,
role: “CEO & Co-Founder”,
background: “Former VP at Oracle, 15+ years in enterprise SaaS”,
image: “https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=400&h=400&fit=crop”
},
{
name: “Marcus Rodriguez”,
role: “CTO & Co-Founder”,
background: “Ex-Google AI Lead, PhD in Machine Learning”,
image: “https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=400&h=400&fit=crop”
},
{
name: “Jennifer Walsh”,
role: “CFO”,
background: “20 years in PE/VC, former CFO at two unicorns”,
image: “https://images.unsplash.com/photo-1580489944761-15a19d654956?w=400&h=400&fit=crop”
},
{
name: “David Park”,
role: “VP of Sales”,
background: “Built sales orgs at Salesforce and HubSpot”,
image: “https://images.unsplash.com/photo-1519085360753-af0119f7cbe7?w=400&h=400&fit=crop”
}
],
investment: {
amount: “$18M Series B”,
purpose: “European market expansion (40%), product development (35%), sales team scaling (25%)”,
return: “Target 4-5x return over 5-year horizon”,
use: “Accelerate path to $100M ARR and market leadership position”
},
contact: {
name: “Jennifer Walsh, CFO”,
email: “j.walsh@vertexsolutions.com”,
phone: “+1 (415) 555-0178”
}
};
return (
{/* Header Section */}
{companyData.name}
{companyData.slogan}
Series B Investment Opportunity
{/* Elevator Pitch */}
{companyData.elevator}
{/* Business Overview */}
Business Overview
Product & Service
{companyData.business.description}
Market Opportunity
{companyData.business.market}
Problem Solved
{companyData.business.problem}
{/* Key Figures */}
Key Figures
{/* Growth Strategy */}
Growth Opportunities
{companyData.growth}
{/* Team Section */}
Leadership Team
{member.name}
{member.role}
{member.background}
))}
{/* Investment Opportunity */}
Investment Opportunity
Path to market leadership in enterprise analytics mid-market segment with clear exit opportunities.
{/* Contact Section */}
Contact
{/* Footer */}
© {new Date().getFullYear()} {companyData.name}. Confidential Investment Materials.
);
