Duplicated from enzostvs/stable-diffusion-tpu
cf8b7da 5240c42 cf8b7da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { Header } from "@/components/header"; import { Footer } from "@/components/footer"; import { Main } from "@/components/main"; export default function Home() { return ( <div className="pb-32"> <Header /> <Main /> <Footer /> </div> ); }