fix: add back header to playground
parent
48340a775f
commit
2df3b1c00d
|
|
@ -1,10 +1,18 @@
|
||||||
import { Metadata } from 'next'
|
import { Metadata } from 'next'
|
||||||
import Chats from './components/chats'
|
import Chats from './components/chats'
|
||||||
|
import { Header } from '@/components/header'
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: 'Playground'
|
title: 'Playground'
|
||||||
}
|
}
|
||||||
|
|
||||||
export default function IndexPage() {
|
export default function IndexPage() {
|
||||||
return <Chats />
|
return (
|
||||||
|
<>
|
||||||
|
<Header />
|
||||||
|
<main className="bg-muted/50 flex flex-1 flex-col">
|
||||||
|
<Chats />
|
||||||
|
</main>
|
||||||
|
</>
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue