first commit

This commit is contained in:
2025-11-20 19:09:43 +00:00
parent b296fe227e
commit 8284b1dd11
38 changed files with 3043 additions and 0 deletions

22
src/ui/Card.tsx Normal file
View File

@@ -0,0 +1,22 @@
import React from "react";
import clsx from "clsx";
type CardProps = {
children: React.ReactNode;
className?: string;
};
const Card = ({ children, className }: CardProps) => {
return (
<div
className={clsx(
"bg-[#253445] rounded-lg mt-4 mx-2 shadow-2xl overflow-x-hidden md:row-span-1 px-2 border border-gray-600 ",
className,
)}
>
{children}
</div>
);
};
export default Card;