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