mirror of
https://github.com/Ategon/Jamjar.git
synced 2025-02-12 06:16:21 +00:00
15 lines
511 B
TypeScript
15 lines
511 B
TypeScript
import { Calendar } from "lucide-react";
|
|
|
|
export default function JamHeader() {
|
|
return (
|
|
<div className="bg-[#7090b9] dark:bg-[#124a88] flex rounded-2xl overflow-hidden text-white transition-color duration-250">
|
|
<div className="bg-[#85bdd2] dark:bg-[#1892b3] p-4 px-6 flex items-center gap-2 font-bold transition-color duration-250">
|
|
<Calendar />
|
|
<p>Down2Jam 1</p>
|
|
</div>
|
|
<div className="p-4 px-6 font-bold">
|
|
<p>April 4th - 7th</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|