website refactor

This commit is contained in:
2026-01-14 16:28:39 +01:00
parent 85e09b6f4d
commit 4b7d82ab43
119 changed files with 2403 additions and 1615 deletions

View File

@@ -30,7 +30,7 @@ export function TeamsTemplate({ teams }: TeamsTemplateProps) {
<h1 className="text-3xl font-bold text-white mb-2">Teams</h1>
<p className="text-gray-400">Browse and manage your racing teams</p>
</div>
<Link href="/teams/create">
<Link href=routes.team.detail('create')>
<Button variant="primary">Create Team</Button>
</Link>
</div>
@@ -82,7 +82,7 @@ export function TeamsTemplate({ teams }: TeamsTemplateProps) {
<Users className="w-16 h-16 text-gray-600 mx-auto mb-4" />
<h3 className="text-xl font-semibold text-white mb-2">No teams yet</h3>
<p className="text-gray-400 mb-4">Get started by creating your first racing team</p>
<Link href="/teams/create">
<Link href=routes.team.detail('create')>
<Button variant="primary">Create Team</Button>
</Link>
</div>