"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 ( <>
) }