Initial commit

This commit is contained in:
2026-09-08 09:20:13 +02:00
commit 1c14e4506b
34 changed files with 2036 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
export const EmptyDay = (props: {
day: { dayNum: number; weekday: string };
}) => {
return (
<div class="text-center py-12 text-gray-500 bg-gray-800/30 rounded-2xl border border-dashed border-gray-700">
<p class="text-lg font-medium">Spielfrei!</p>
<p class="text-sm mt-1">
Keine Matches am {props.day.dayNum}. {props.day.weekday}
</p>
</div>
);
};