"use client"; import { useState } from 'react'; import Link from 'next/link'; import { Button } from '@/components/ui/button'; import { Card, CardContent, CardFooter, CardHeader, CardTitle } from '@/components/ui/card'; import { Badge } from '@/components/ui/badge'; import { Separator } from '@/components/ui/separator'; import { Play, Clock, Eye, MoreHorizontal, Plus, Sparkles, } from 'lucide-react'; const mockTasks = [ { id: 1, title: 'Tech Product Demo', status: 'completed', duration: '2:45', views: 1234, createdAt: '2024-01-15', thumbnail: 'https://images.pexels.com/photos/3861969/pexels-photo-3861969.jpeg?auto=compress&cs=tinysrgb&w=400', }, { id: 2, title: 'Marketing Campaign Video', status: 'processing', duration: '1:30', views: 0, createdAt: '2024-01-14', thumbnail: 'https://images.pexels.com/photos/3184287/pexels-photo-3184287.jpeg?auto=compress&cs=tinysrgb&w=400', }, { id: 3, title: 'Educational Content', status: 'completed', duration: '5:20', views: 856, createdAt: '2024-01-12', thumbnail: 'https://images.pexels.com/photos/3184465/pexels-photo-3184465.jpeg?auto=compress&cs=tinysrgb&w=400', }, ]; export function HomePage() { return (
{/* Hero Section */}

Create Amazing Videos with{' '} AI Power

Transform your ideas into professional videos using our advanced AI technology. From script to screen in minutes, not hours.

{/* Recent Projects */}

Recent Projects

{mockTasks.map((task) => (
{task.title}
{task.status}
{task.title}
{task.duration}
{task.views}

Created on {new Date(task.createdAt).toLocaleDateString()}

))}
{mockTasks.length === 0 && (

No projects yet

Get started by creating your first AI-powered video

)}
); }