Perplexica/ui/app/page.tsx

21 lines
387 B
TypeScript
Raw Normal View History

2024-04-09 16:21:05 +05:30
import ChatWindow from '@/components/ChatWindow';
import { Metadata } from 'next';
2024-05-11 21:19:38 +05:30
import { Suspense } from 'react';
2024-04-09 16:21:05 +05:30
export const metadata: Metadata = {
2025-01-07 12:27:56 +01:00
title: 'Chat - Smartly',
description: 'Chat with the internet, chat with Smartly.',
2024-04-09 16:21:05 +05:30
};
const Home = () => {
return (
<div>
2024-05-11 21:19:38 +05:30
<Suspense>
<ChatWindow />
</Suspense>
2024-04-09 16:21:05 +05:30
</div>
);
};
export default Home;