'use client';

import React from 'react';
import { Construction } from 'lucide-react';

export function MaintenanceScreen({ message }: { message: string }) {
  return (
    <div className="flex min-h-[100dvh] flex-col items-center justify-center bg-d11-bg px-6 text-center">
      <div className="flex h-16 w-16 items-center justify-center rounded-2xl bg-d11-soft text-d11-red">
        <Construction className="h-8 w-8" />
      </div>
      <h1 className="mt-5 font-display text-2xl font-extrabold text-d11-ink">Under maintenance</h1>
      <p className="mt-2 max-w-md text-sm text-d11-muted">{message}</p>
      <p className="mt-6 font-display text-lg font-bold text-d11-red">MY11s</p>
    </div>
  );
}
