Perplexica/ui/app/page.tsx

20 lines
479 B
TypeScript
Raw Normal View History

2024-04-09 16:21:05 +05:30
import ChatWindow from '@/components/ChatWindow';
2024-10-08 21:15:55 +03:00
import AuthSettingsHandler from '@/components/AuthSettingsHandler';
2024-04-09 16:21:05 +05:30
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 = {
title: 'Chat - Perplexica',
description: 'Chat with the internet, chat with Perplexica.',
};
2024-10-08 21:15:55 +03:00
export default function Home() {
2024-04-09 16:21:05 +05:30
return (
<div>
2024-10-08 21:15:55 +03:00
<AuthSettingsHandler />
2024-05-11 21:19:38 +05:30
<Suspense>
<ChatWindow />
</Suspense>
2024-04-09 16:21:05 +05:30
</div>
);
2024-10-08 21:15:55 +03:00
}