Landing page.

This commit is contained in:
Drew 2025-09-22 02:32:43 -07:00
parent 80539fd199
commit 6ef9843835
16 changed files with 1405 additions and 57 deletions

View file

@ -1,11 +1,7 @@
import { describe, it, expect, beforeEach, afterEach, vi } from 'vitest'
import { apiClient } from './api'
import {
Task,
TaskStatus,
CreateTaskRequest,
UpdateTaskRequest,
} from '~/types/task'
import type { Task, CreateTaskRequest, UpdateTaskRequest } from '~/types/task'
import { TaskStatus } from '~/types/task'
// Mock fetch globally
const mockFetch = vi.fn()