|
import { fonts } from "@/lib/fonts" |
|
import { cn } from "@/lib/utils" |
|
|
|
export function Maintenance() { |
|
return ( |
|
<div className="z-20 fixed inset-0 w-screen h-screen bg-white text-stone-800 flex flex-col items-center justify-center"> |
|
<div className={cn( |
|
fonts.actionman.className, |
|
"text-center" |
|
)}> |
|
<p className="text-4xl">🚧 Maintenance in progress 🚧</p> |
|
<p className="text-3xl mt-12 mb-8">See the <a |
|
href="https://huggingface.co/spaces/jbilcke-hf/ai-comic-factory/discussions/339" |
|
className="underline text-yellow-500" |
|
>announcement here</a> <img src="/quick-and-dirty-emoji.png" className="inline w-10 h-10"></img></p> |
|
<p className="text-2xl">This shouldn't last long, so stay tuned!</p> |
|
</div> |
|
</div> |
|
) |
|
} |