Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 1,759 Bytes
624088c b022cb9 624088c b022cb9 624088c bca383d b022cb9 6b9b7a1 624088c b022cb9 624088c bca383d b022cb9 bca383d 624088c 60d3d5e 6b9b7a1 b022cb9 c65c1bb 624088c b022cb9 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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
"use server"
import { ComponentProps } from "react"
import Head from "next/head"
import Script from "next/script"
import { TooltipProvider } from "@/components/ui/tooltip"
import { cn } from "@/lib/utils"
import Main from "./main"
// import { Maintenance } from "./interface/maintenance"
// https://nextjs.org/docs/pages/building-your-application/optimizing/fonts
export default async function IndexPage() {
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={cn(
`light fixed inset-0 w-screen h-screen flex flex-col items-center`,
`bg-zinc-50 text-stone-900 overflow-y-scroll`,
// important: in "print" mode we need to allow going out of the screen
`inset-auto print:h-auto print:w-auto print:overflow-visible print:relative print:flex-none`
)}>
<TooltipProvider delayDuration={100}>
<Main />
{/*
to display a maintenance page, hide <Main /> and uncomment this unstead:
<Maintenance />
*/}
</TooltipProvider>
<Script src="https://www.googletagmanager.com/gtag/js?id=GTM-WH4MGSHS" />
</Script>
</main>
</>
)
} |