Perplexica/ui/app/page.tsx
2025-01-07 12:27:56 +01:00

20 lines
387 B
TypeScript

import ChatWindow from '@/components/ChatWindow';
import { Metadata } from 'next';
import { Suspense } from 'react';
export const metadata: Metadata = {
title: 'Chat - Smartly',
description: 'Chat with the internet, chat with Smartly.',
};
const Home = () => {
return (
<div>
<Suspense>
<ChatWindow />
</Suspense>
</div>
);
};
export default Home;