project setup

This commit is contained in:
Sone
2025-11-02 10:00:53 +01:00
parent 75bd171804
commit 7cb4c5345e
51 changed files with 3616 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
interface ButtonProps {
text: string;
}
const Button = ({ text }: ButtonProps) => {
return (
<button className="px-4 py-3 font-mono text-xs sm:text-sm text-white bg-[var(--color-3)] rounded-xl cursor-pointer">
{text}
</button>
);
};
export default Button;