import { Button } from "@/components/ui/button" import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from "@/components/ui/dialog" import { useState } from "react" import { Login } from "../login" export function About() { const [isOpen, setOpen] = useState(false) return ( The AI Comic Factory What is the AI Comic Factory?

The AI Comic Factory is an app to generate stories using AI in a few clicks.

It is free for all Hugging Face users:

As an artist, you can use your own art to generate comic panels.

👉 The language model used to generate the story is Zephyr-7b-beta.

👉 The diffusion model used by default is SDXL.

The code is public and can be deployed at home with some changes in the code. See the README for details about the architecture.

) }