import Link from 'next/link'; import { Video, MessageSquare, Mic, Share2, ArrowRight, Play } from 'lucide-react'; import { Button } from '@/components/ui/button'; export default function HomePage() { return (
{/* Header */}
{/* Hero */}

Video feedback,{' '} reimagined

Collect timestamped feedback on your videos with text and voice comments. Share with your team and clients, iterate faster.

{/* Features */}

Everything you need for video feedback

{/* CTA */}

Ready to streamline your video workflow?

Join teams who have already switched to OpenFrame for faster, clearer video feedback.

{/* Footer */}
); } function FeatureCard({ icon: Icon, title, description }: { icon: React.ComponentType<{ className?: string }>; title: string; description: string; }) { return (

{title}

{description}

); }