'use client'; import Link from 'next/link'; import { motion } from 'framer-motion'; import { Button } from '@/components/ui/button'; import { Card, CardContent } from '@/components/ui/card'; import { Sparkles, Upload, BarChart3, Users, Zap, CheckCircle, ArrowRight, FileText, Target, TrendingUp, } from 'lucide-react'; const features = [ { icon: FileText, title: 'Patent Analysis', description: 'AI-powered extraction of key innovations, technical domains, and TRL assessment', }, { icon: BarChart3, title: 'Market Research', description: 'Identify commercialization opportunities and market potential with precision', }, { icon: Users, title: 'Partner Matching', description: 'Semantic search to find the perfect stakeholders and collaborators', }, { icon: Target, title: 'Valorization Brief', description: 'Generate professional outreach documents ready for stakeholder engagement', }, { icon: Zap, title: 'Real-Time Processing', description: 'Watch your patent analysis happen live with WebSocket streaming', }, { icon: TrendingUp, title: 'Data-Driven Insights', description: 'Get actionable recommendations backed by comprehensive market data', }, ]; const steps = [ { number: '01', title: 'Upload Patent', description: 'Drag and drop your patent PDF (up to 50MB)', }, { number: '02', title: 'AI Analysis', description: 'Our agentic system analyzes technology and market fit', }, { number: '03', title: 'Partner Matching', description: 'Semantic search finds relevant stakeholders', }, { number: '04', title: 'Get Results', description: 'Download valorization brief and connect with partners', }, ]; export default function HomePage() { return (
{/* Hero Section */}
{/* Left Column - Content */}
AI-Powered Patent Commercialization

SPARKNET

Transform Dormant Patents into Commercialization Opportunities

Leverage AI-powered multi-agent systems to analyze patents, identify market opportunities, and connect with the right partners for successful technology transfer.

{/* Stats */}
98%
Match Accuracy
2-5min
Analysis Time
AI-Powered
Multi-Agent System
{/* Right Column - Visual */}
Patent Analyzed
TRL Level 7/9
12 Market Opportunities
NaN TAM
8 Partner Matches
95% fit score
{/* Features Section */}

Powerful Features for{' '} Patent Valorization

Everything you need to transform patents into commercial success

{features.map((feature, index) => { const Icon = feature.icon; return (

{feature.title}

{feature.description}

); })}
{/* How It Works */}

How It Works

Four simple steps to patent commercialization success

{steps.map((step, index) => (
{step.number}

{step.title}

{step.description}

{index < steps.length - 1 && (
)}
))}
{/* CTA Section */}

Ready to Wake Up Your Patents?

Start analyzing your patents today and discover untapped commercialization opportunities

); }