Files
Wyview/app/youtube/page.tsx

33 lines
1.6 KiB
TypeScript

import StatCard from "@/components/StatCard";
import { YoutubeIcon } from "lucide-react";
export default function YoutubePage() {
return (
<div>
<div className="flex items-center gap-3 mb-8">
<div className="p-2 rounded-sm bg-red-500/10 border border-red-500/20">
<YoutubeIcon size={18} className="text-red-400" />
</div>
<div>
<div className="text-[9px] font-mono tracking-[0.3em] text-red-400/50 uppercase mb-0.5">Plateforme</div>
<h1 className="text-2xl font-black tracking-widest text-white uppercase">YouTube</h1>
</div>
</div>
<div className="grid grid-cols-2 xl:grid-cols-4 gap-4 mb-8">
<StatCard label="Abonnés" value="—" sub="Aucune donnée" accent="red" />
<StatCard label="Vues totales" value="—" sub="Aucune donnée" accent="red" />
<StatCard label="Vidéos publiées" value="—" sub="Aucune donnée" accent="red" />
<StatCard label="Watch time (h)" value="—" sub="Aucune donnée" accent="red" />
</div>
<div className="bg-[#0d1210] border border-[#1a2a1a] rounded-sm p-8 flex flex-col items-center justify-center gap-3 min-h-[200px]">
<YoutubeIcon size={32} className="text-red-400/20" />
<p className="text-[#3a5a3a] font-mono text-xs tracking-widest text-center">
CONNECTEZ VOTRE COMPTE YOUTUBE<br />POUR AFFICHER VOS STATISTIQUES
</p>
</div>
</div>
);
}