34 lines
1.7 KiB
TypeScript
34 lines
1.7 KiB
TypeScript
import StatCard from "@/components/StatCard";
|
|
import { Camera } from "lucide-react";
|
|
|
|
export default function InstagramPage() {
|
|
return (
|
|
<div>
|
|
<div className="flex items-center gap-3 mb-8">
|
|
<div className="p-2 rounded-sm bg-orange-500/10 border border-orange-500/25">
|
|
<Camera size={18} className="text-orange-400" />
|
|
</div>
|
|
<div>
|
|
<div className="text-[9px] font-mono tracking-[0.3em] text-orange-400/70 uppercase mb-0.5">Plateforme</div>
|
|
<h1 className="text-2xl font-black tracking-widest uppercase" style={{ color: "var(--text-primary)" }}>Instagram</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="gold" />
|
|
<StatCard label="Likes totaux" value="—" sub="Aucune donnée" accent="gold" />
|
|
<StatCard label="Posts publiés" value="—" sub="Aucune donnée" accent="gold" />
|
|
<StatCard label="Portée moy." value="—" sub="Aucune donnée" accent="gold" />
|
|
</div>
|
|
|
|
<div className="border rounded-sm p-8 flex flex-col items-center justify-center gap-3 min-h-[200px]"
|
|
style={{ background: "var(--surface)", borderColor: "var(--border)" }}>
|
|
<Camera size={32} className="text-orange-400/30" />
|
|
<p className="font-mono text-xs tracking-widest text-center" style={{ color: "var(--text-secondary)" }}>
|
|
CONNECTEZ VOTRE COMPTE INSTAGRAM<br />POUR AFFICHER VOS STATISTIQUES
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|