make website run

This commit is contained in:
2025-12-17 14:40:46 +01:00
parent daa4bb6576
commit a213a5cf9f
54 changed files with 196 additions and 352 deletions

View File

@@ -4,7 +4,6 @@ import { useState } from 'react';
import { useRouter } from 'next/navigation';
import Button from '@/components/ui/Button';
import Input from '@/components/ui/Input';
import { getCreateTeamUseCase } from '@/lib/di-container';
import { useEffectiveDriverId } from '@/lib/currentDriver';
interface CreateTeamFormProps {

View File

@@ -2,11 +2,6 @@
import { useState, useEffect } from 'react';
import Button from '@/components/ui/Button';
import {
getJoinTeamUseCase,
getLeaveTeamUseCase,
getTeamMembershipRepository,
} from '@/lib/di-container';
import { useEffectiveDriverId } from '@/lib/currentDriver';
type TeamMembershipStatus = 'active' | 'pending' | 'inactive';

View File

@@ -16,7 +16,6 @@ import {
Globe,
Languages,
} from 'lucide-react';
import { getImageService } from '@/lib/di-container';
interface TeamCardProps {
id: string;

View File

@@ -2,7 +2,6 @@
import { useRouter } from 'next/navigation';
import Image from 'next/image';
import { getImageService } from '@/lib/di-container';
export interface TeamLadderRowProps {
rank: number;