Initial Commit
All checks were successful
Build and Push Docker Image / build (push) Successful in 3m6s

This commit is contained in:
2026-05-30 12:52:07 +02:00
commit 6d6dcb66a1
62 changed files with 12208 additions and 0 deletions

13
src/components/Header.tsx Normal file
View File

@@ -0,0 +1,13 @@
import { Link } from '@tanstack/solid-router'
import TanStackQueryHeaderUser from '../integrations/tanstack-query/header-user.tsx'
export default function Header() {
return (
<div class="flex items-center justify-between px-4">
<Link to="/">Home</Link>
<Link to="/todo">Todo</Link>
<TanStackQueryHeaderUser />
</div>
)
}