feat(chat): created basic chat layout

This commit is contained in:
JK-le-dev 2025-10-18 15:22:13 -05:00
commit 8ba67f1080
10 changed files with 154 additions and 26 deletions

12
src/app/index.jsx Normal file
View file

@ -0,0 +1,12 @@
import React from "react";
import ChatLayout from "src/components/ui/ChatLayout";
function App() {
return (
<div className="min-h-screen bg-slate-900 text-white flex items-center justify-center p-6">
<ChatLayout />
</div>
);
}
export default App;