first commit
This commit is contained in:
19
app/components/Chat/index.tsx
Normal file
19
app/components/Chat/index.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user