Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 1,435 Bytes
624088c 35f8585 6b9b7a1 624088c 60d3d5e 6b9b7a1 c65c1bb 624088c 35f8585 624088c |
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
"use server"
import Head from "next/head"
import Main from "./main"
import { TooltipProvider } from "@/components/ui/tooltip"
import Script from "next/script"
// import { Maintenance } from "./interface/maintenance"
// https://nextjs.org/docs/pages/building-your-application/optimizing/fonts
export default async function IndexPage({ params: { ownerId } }: { params: { ownerId: string }}) {
return (
<>
<Head>
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
<link rel="preconnect" href="https://fonts.googleapis.com" crossOrigin="anonymous" />
<meta name="viewport" content="width=device-width, initial-scale=0.86, maximum-scale=5.0, minimum-scale=0.86" />
</Head>
<main className={
`light fixed inset-0 w-screen h-screen flex flex-col items-center
bg-zinc-50 text-stone-900 overflow-y-scroll
`}>
<TooltipProvider delayDuration={100}>
<Main />
{/* <Maintenance /> */}
</TooltipProvider>
<Script src="https://www.googletagmanager.com/gtag/js?id=GTM-WH4MGSHS" />
</Script>
</main>
</>
)
} |