This commit is contained in:
szabomarton
2025-04-11 09:22:28 +02:00
parent 32d021c04f
commit d3b096b3ca
40 changed files with 8258 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
function Header(props) {
return (
<h1 className="text-3xl font-bold text-center text-indigo-200 bg-indigo-800" >{props.text}</h1>
);
}
export default Header;