import { ReactNode, useState } from "react" import { Button } from "@/components/ui/button" import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from "@/components/ui/dialog" import { Login } from "../login" const APP_NAME = `AI Comic Factory` const APP_DOMAIN = `aicomicfactory.app` const APP_URL = `https://aicomicfactory.app` const APP_VERSION = `1.4` const APP_RELEASE_DATE = `May 2024` const ExternalLink = ({ url, children }: { url: string; children: ReactNode }) => { return ( {children} ) } export function About() { const [isOpen, setOpen] = useState(false) return ( {APP_DOMAIN} {APP_VERSION} ({APP_RELEASE_DATE})

{APP_DOMAIN} generates stories using AI in a few clicks.

App is free for Hugging Face users 👉

Join us on Discord 👉 The Latent Space

Are you an artist? Learn how to use your own art style

👉 Default AI model used for stories is Zephyr-7b-beta

👉 Default AI model used for drawing is SDXL by Stability AI

This is an open-source project, see the README for more info.

) }