CodeRED-Astra/web-app/src/components/ui/chat/chat-header.jsx
JK-le-dev 5e0de6e894 style(colors): changed colors
using slate and grey colors for the most part with violot bc why not
2025-10-18 20:04:02 -05:00

11 lines
303 B
JavaScript

import React from "react";
export default function ChatHeader({ title = "Title of Chat" }) {
return (
<header className="flex justify-center text-slate-100">
<h1 className="text-lg font-semibold shadow-xl bg-gray-900 px-4 py-2 rounded-4xl">
{title}
</h1>
</header>
);
}