File size: 502 Bytes
c7b9c60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"use server"

import Head from "next/head"

import Main from "./main"

export default async function IndexPage({ params: { ownerId } }: { params: { ownerId: string }}) {
  return (
    <div>
      <Head>
        <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">
        <Main />
      </main>
    </div>
  )
}