Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 792 Bytes
c65c1bb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
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>
)
} |