Spaces:
Runtime error
Runtime error
File size: 921 Bytes
4f64da5 b1ecc22 4f64da5 637dd5c 4f64da5 637dd5c 4f64da5 637dd5c 4f64da5 637dd5c b1ecc22 4f64da5 637dd5c 4f64da5 |
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 |
"use server"
import Head from "next/head"
import Main from "./main"
import { TooltipProvider } from "@/components/ui/tooltip"
// 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={
`dark fixed inset-0 flex flex-col items-center
bg-stone-900 text-stone-10 overflow-y-scroll
`}>
<TooltipProvider delayDuration={100}>
<Main />
</TooltipProvider>
</main>
</>
)
} |