Move to clerk

This commit is contained in:
Jared Palmer 2023-06-13 17:31:15 -04:00
parent cd340320b7
commit 567b0ac313
18 changed files with 550 additions and 178 deletions

View file

@ -1,8 +1,17 @@
import { Chat } from '@/components/chat'
import { Header } from '@/components/header'
// export const runtime = 'edge'
export const preferredRegion = 'home'
export default async function IndexPage() {
return <Chat />
return (
<div className="flex flex-col min-h-screen">
{/* @ts-ignore */}
<Header />
<main className="flex-1 bg-muted/50">
<Chat />
</main>
</div>
)
}