Sacha VAUDEY d36f6f48e8
Some checks failed
Build / build-check (pull_request) Failing after 57s
update to Tailwind v4
2025-09-13 22:26:20 +02:00

32 lines
559 B
TypeScript

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';