first commit

This commit is contained in:
2024-08-23 19:17:13 +00:00
commit d6df9f205a
23 changed files with 6009 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import React from "react";
const index = () => {
return (
<div>
<div className="p-6 max-w-sm mx-auto bg-white rounded-xl shadow-lg flex items-center space-x-4">
<div className="shrink-0">
<img className="size-12" src="/img/logo.svg" alt="ChitChat Logo" />
</div>
<div>
<div className="text-xl font-medium text-black">ChitChat</div>
<p className="text-slate-500">You have a new message!</p>
</div>
</div>
</div>
);
};
export default index;