jbilcke-hf's picture
jbilcke-hf HF staff
clean-up and preparation work for oauth (maybe)
62c3e75
raw
history blame contribute delete
No virus
607 Bytes
"use client"
import { cn } from "@/lib/utils"
import { Toaster } from "@/components/ui/toaster"
import { paragraphFont } from "@/app/interface/fonts"
import { Background } from "./interface/background"
import { Generate } from "./interface/generate"
import { BottomBar } from "./interface/bottom-bar"
export function Main() {
return (
<div className={cn(
`flex flex-col h-screen items-center justify-center`,
`px-3 md:px-0`,
paragraphFont.className
)}>
<Background />
<Generate />
<BottomBar />
<Toaster />
{/*<div>Login</div>*/}
</div>
)
}