Perplexica/ui/app/page.tsx
2024-07-05 14:36:50 +08:00

20 lines
393 B
TypeScript

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