import { Eye, Heart, MessageCircle } from "lucide-react"; import Image from "next/image"; interface VideoItem { id: number; title: string; thumbnail: string; duration: string; publishedAt: string; views: string; likes: string; comments: string; } const sampleVideos: VideoItem[] = [ { id: 1, title: "Cuplikan Kegiatan Presiden di IKN", thumbnail: "/yt/thumb1.jpg", duration: "12:30", publishedAt: "2 jam yang lalu", views: "12K", likes: "230", comments: "45", }, { id: 2, title: "Pembangunan MRT Fase Berikutnya Resmi Dimulai", thumbnail: "/yt/thumb2.jpg", duration: "08:12", publishedAt: "5 jam yang lalu", views: "9.4K", likes: "180", comments: "30", }, { id: 3, title: "Wilayah Indonesia Siap Hadapi Cuaca Ekstrem", thumbnail: "/yt/thumb3.jpg", duration: "05:50", publishedAt: "1 hari lalu", views: "21K", likes: "540", comments: "121", }, { id: 4, title: "Peningkatan Ekonomi Regional Terus Dijaga", thumbnail: "/yt/thumb4.jpg", duration: "10:44", publishedAt: "2 hari lalu", views: "18K", likes: "420", comments: "88", }, { id: 5, title: "Laporan Khusus Perkembangan Industri Kreatif", thumbnail: "/yt/thumb5.jpg", duration: "14:02", publishedAt: "3 hari lalu", views: "30K", likes: "830", comments: "200", }, { id: 6, title: "Paparan Menteri Perhubungan Soal Transportasi", thumbnail: "/yt/thumb6.jpg", duration: "07:21", publishedAt: "4 hari lalu", views: "9K", likes: "114", comments: "26", }, ]; export default function YouTubeSection() { return (
{/* Header Channel */}
Logo Channel

YouTube • Channel Resmi

Lebih dari 3.5 juta pengikut • 12k video

Subscribe
{/* Grid Video */}
{sampleVideos.map((v) => (
{v.title} {v.duration}

{v.title}

{v.publishedAt}

{v.views} {v.likes} {v.comments}
))}
{/* Pagination */}
); }