File size: 607 Bytes
9a42933
 
 
ee5bd94
9a42933
 
 
63561e1
9a42933
 
 
 
 
 
 
 
 
 
 
63561e1
ee5bd94
62c3e75
9a42933
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"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>
  )
}