20 lines
393 B
TypeScript
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;
|