migrate to nextjs

This commit is contained in:
2026-01-29 00:14:30 +01:00
parent 081dad7cf9
commit 0853a497ef
34 changed files with 4879 additions and 5956 deletions

12
tests/setup.ts Normal file
View File

@@ -0,0 +1,12 @@
import '@testing-library/jest-dom'
import { vi } from 'vitest'
// Mock next/navigation
vi.mock('next/navigation', () => ({
usePathname: () => '/',
useRouter: () => ({
push: vi.fn(),
replace: vi.fn(),
prefetch: vi.fn(),
}),
}))