18 lines
322 B
TypeScript
18 lines
322 B
TypeScript
|
import ChatWindow from '@/components/ChatWindow';
|
||
|
import { Metadata } from 'next';
|
||
|
|
||
|
export const metadata: Metadata = {
|
||
|
title: 'Chat - Perplexica',
|
||
|
description: 'Chat with the internet, chat with Perplexica.',
|
||
|
};
|
||
|
|
||
|
const Home = () => {
|
||
|
return (
|
||
|
<div>
|
||
|
<ChatWindow />
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default Home;
|