'use client'; import Image from 'next/image' import { Button } from "@/components/ui/button" import { useRouter } from 'next/navigation' import { Database, Cpu, Share2, BarChart3, ChevronDown, Plus, Minus, PlayCircle, Github, Copy, Calendar } from 'lucide-react' import { motion, AnimatePresence } from 'framer-motion' import { useState } from 'react' import Link from 'next/link' const colorScheme = { primary: "#DB2777", // Main pink color for buttons and primary elements hover: "#BE185D", // Darker pink for hover states text: { primary: "#DB2777", // Pink for primary text secondary: "#6B7280", // Gray for secondary text white: "#FFFFFF" // White text }, background: "#FDF2F8" // Light pink background }; export default function HomePage() { const router = useRouter(); const [openFaqIndex, setOpenFaqIndex] = useState(null); const [copied, setCopied] = useState(false); const copyCommand = () => { navigator.clipboard.writeText('pip install starfish-core'); setCopied(true); setTimeout(() => setCopied(false), 2000); }; const faqs = [ { question: "What is Starfishdata's mission in healthcare?", answer: "Starfishdata is dedicated to solving the data bottleneck in Healthcare AI by providing high-quality, privacy-preserving synthetic data for research, development, and deployment of AI solutions." }, { question: "How does Starfishdata ensure patient privacy?", answer: "We use advanced generative models and strict privacy-preserving techniques to ensure that no real patient data is ever exposed or re-identifiable in our synthetic datasets." }, { question: "Who can benefit from Starfishdata's solutions?", answer: "Healthcare AI startups, hospitals, research institutions, and any organization facing data scarcity or privacy challenges in healthcare can benefit from our synthetic data platform." }, { question: "What makes Starfishdata different from other synthetic data providers?", answer: "Our exclusive focus on healthcare, deep expertise in generative AI, and commitment to regulatory compliance set us apart. We partner closely with clients to deliver data that accelerates innovation while protecting patient privacy." } ]; const toggleFaq = (index: number) => { setOpenFaqIndex(openFaqIndex === index ? null : index); }; const scrollToVideo = () => { const videoSection = document.getElementById('youtube-video') if (videoSection) { videoSection.scrollIntoView({ behavior: 'smooth', block: 'start' }) } } return (
Starfish Logo Starfishdata Solving the data bottleneck in Healthcare AI {/* Social Links (X, Discord, Hugging Face) */}
{/* Schedule a Call with Us - Main CTA */} Schedule a Call with Us {/* Divider below CTA */}
{/* Code block for pip install */}
Try our open source library
pip install starfish-core
{/* Consistent Secondary Buttons under code block */}
Star on GitHub
{/* Divider before Supported by section */}
{/* Supported by Section (social proof) */}

Supported by

NVIDIA Inception Partner Microsoft for Startups
{/* Scroll Indicator Section */}
Scroll to explore
{/* FAQ Section */}
Frequently Asked Questions
{faqs.map((faq, index) => ( {openFaqIndex === index && (

{faq.answer}

)}
))}
{/* Footer CTA */}

Ready to Get Started?

Join us in revolutionizing AI development with high-quality synthetic data

{/* Add social row above the main footer CTA */}
) }