perplexica/ui/app/page.tsx

21 lines
393 B
TypeScript
Raw Normal View History

2024-04-09 10:51:05 +00:00
import ChatWindow from '@/components/ChatWindow';
import { Metadata } from 'next';
2024-05-11 15:49:38 +00:00
import { Suspense } from 'react';
2024-04-09 10:51:05 +00:00
export const metadata: Metadata = {
title: 'Chat - Perplexica',
description: 'Chat with the internet, chat with Perplexica.',
};
const Home = () => {
return (
<div>
2024-05-11 15:49:38 +00:00
<Suspense>
<ChatWindow />
</Suspense>
2024-04-09 10:51:05 +00:00
</div>
);
};
export default Home;