Perplexica/ui/app/page.tsx

21 lines
393 B
TypeScript
Raw Normal View History

2024-07-05 14:36:50 +08:00
import ChatWindow from "@/components/ChatWindow";
import { Metadata } from "next";
import { Suspense } from "react";
2024-04-09 16:21:05 +05:30
export const metadata: Metadata = {
2024-07-05 14:36:50 +08:00
title: "Chat - Perplexica",
description: "Chat with the internet, chat with Perplexica.",
2024-04-09 16:21:05 +05:30
};
const Home = () => {
return (
<div>
2024-05-11 21:19:38 +05:30
<Suspense>
<ChatWindow />
</Suspense>
2024-04-09 16:21:05 +05:30
</div>
);
};
export default Home;