website refactor

This commit is contained in:
2026-01-16 16:46:57 +01:00
parent 37b1aa626c
commit 2f53727702
445 changed files with 1160 additions and 1150 deletions

View File

@@ -10,7 +10,7 @@
* Follows clean architecture and TDD principles.
*/
import type { ValueObject } from '@core/shared/domain';
import type { ValueObject } from '@core/shared/domain/ValueObject';
// Variant types for system-default references
export type MediaVariant = 'avatar' | 'logo';
@@ -236,7 +236,7 @@ export class MediaReference implements ValueObject<MediaReferenceProps> {
/**
* Equality comparison
*/
equals(other: IValueObject<MediaReferenceProps>): boolean {
equals(other: ValueObject<MediaReferenceProps>): boolean {
if (!(other instanceof MediaReference)) {
return false;
}