mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2026-01-10 13:25:43 +00:00
14 lines
289 B
TypeScript
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;
|