import type { Service } from './service'; export interface Translation { services: Service[]; hero: { title: string; subtitle: string; cta: string; }; navigation: { home: string; services: string; about: string; contact: string; }; common: { discoverFeatures: string; close: string; loading: string; }; user: { profile: string; logout: string; groups: string; userMenu: string; connecting: string; authError: string; }; } export type Language = 'fr' | 'en'; //| 'es' | 'de';