Perplexica / ui /app /page.tsx
Asman2010's picture
Upload 65 files
f5ed9bf verified
raw
history blame contribute delete
339 Bytes
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;