website refactor

This commit is contained in:
2026-01-14 10:51:05 +01:00
parent 4522d41aef
commit 0d89ad027e
291 changed files with 6887 additions and 3685 deletions

View File

@@ -1,3 +1,6 @@
import { Result } from '@/lib/contracts/Result';
import { DomainError } from '@/lib/contracts/services/Service';
/**
* Landing Service - DTO Only
*
@@ -10,4 +13,8 @@ export class LandingService {
async getLandingData(): Promise<any> {
return { featuredLeagues: [], stats: {} };
}
async signup(email: string): Promise<Result<void, DomainError>> {
return Result.err({ type: 'notImplemented', message: 'Email signup endpoint' });
}
}