Files
Perplexica/src/app/page.tsx
2025-10-24 22:58:10 +05:30

14 lines
289 B
TypeScript

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