Spaces:
Runtime error
Runtime error
File size: 578 Bytes
5f663a9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
"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>
)
} |