fix: add back header to playground

support-auth-token
Meng Zhang 2023-12-07 15:09:23 +08:00
parent 48340a775f
commit 2df3b1c00d
1 changed files with 9 additions and 1 deletions

View File

@ -1,10 +1,18 @@
import { Metadata } from 'next'
import Chats from './components/chats'
import { Header } from '@/components/header'
export const metadata: Metadata = {
title: 'Playground'
}
export default function IndexPage() {
return <Chats />
return (
<>
<Header />
<main className="bg-muted/50 flex flex-1 flex-col">
<Chats />
</main>
</>
)
}