kenny
Initial commit
a2b51e3
raw
history blame contribute delete
164 Bytes
import Chat from "@/components/Chat";
export default function Home() {
return (
<main className="min-h-screen p-4 sm:p-8">
<Chat />
</main>
);
}