Perplexica/ui/app/page.tsx

21 lines
439 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-02-03 08:48:19 -10:00
title: 'MyCounsellor Ai Serach Eengine - Searching Thking with Gemini',
description: 'Chat with the internet, chat with MyCounsellor.',
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;