style(chat): fixed chat layout + added shadows

This commit is contained in:
JK-le-dev 2025-10-18 22:18:18 -05:00
commit 41d0451cce
9 changed files with 116 additions and 16 deletions

View file

@ -3,9 +3,9 @@ import React from "react";
export default function ChatHeader({ title = "Title of Chat" }) {
return (
<div className="w-full flex justify-center">
<header className="text-slate-100 fixed top-2">
<header className="text-slate-100 fixed top-4 ">
<div>
<h1 className="text-lg font-semibold shadow-xl bg-gray-900 px-6 py-2 rounded-4xl">
<h1 className="text-lg font-semibold shadow-lg shadow-indigo-600 bg-gray-900 px-6 py-2 rounded-4xl border-2 border-gray-800">
{title}
</h1>
</div>