Perplexica/ui/app/page.tsx
2025-02-03 08:48:19 -10:00

20 lines
439 B
TypeScript

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