File size: 510 Bytes
9a42933
 
 
 
 
 
63561e1
9a42933
 
 
 
 
 
 
 
 
 
 
63561e1
9a42933
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
"use client"

import { cn } from "@/lib/utils"
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 />
    </div>
  )
}