24 lines
414 B
TypeScript
24 lines
414 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;
|
|
};
|
|
}
|
|
|
|
export type Language = 'fr' | 'en'; //| 'es' | 'de';
|