fixed like action, better dark mode, bottom navigation working, added taskcollection

This commit is contained in:
2025-09-13 00:43:53 +02:00
parent fc1e64fea3
commit 216ee063ff
24 changed files with 2070 additions and 208 deletions

View File

@@ -21,7 +21,7 @@ function HomeLayout() {
const { slug } = useParams();
return (
<div className="pb-16">
<Header title={slug ? `Event: ${slug}` : 'Fotospiel'} />
{slug ? <Header slug={slug} /> : <Header title="Event" />}
<div className="px-4 py-3">
<Outlet />
</div>