"use client";

import Link from "next/link";
import { ChevronLeft, AlertCircle } from "lucide-react";

export default function MovieBoxDisabledDetailPage() {
  return (
    <div className="min-h-screen bg-background flex flex-col items-center justify-center p-6 text-center space-y-4">
      <AlertCircle className="w-12 h-12 text-destructive" />
      <h2 className="text-2xl font-bold text-foreground">MovieBox dinonaktifkan</h2>
      <p className="text-muted-foreground text-sm max-w-md">
        Halaman MovieBox sementara tidak tersedia agar tidak mengganggu performa platform lain.
      </p>
      <Link
        href="/"
        className="inline-flex items-center gap-2 text-primary hover:underline"
      >
        <ChevronLeft className="w-5 h-5" />
        Kembali ke beranda
      </Link>
    </div>
  );
}
