import { TLL_PARTENARIAT_TEMPLATE_HTML } from './template-tll-partenariat';

/**
 * Built-in document templates shipped with the app. Always appear first in
 * the "Charger un modèle" dropdown above any user-saved templates.
 */
export interface BuiltinTemplate {
    slug: string;
    name: string;
    category: string | null;
    html: string;
}

export const BUILTIN_TEMPLATES: BuiltinTemplate[] = [
    {
        slug: 'partenariat-tll',
        name: 'Contrat de Partenariat TLL',
        category: 'contrat_partenaire',
        html: TLL_PARTENARIAT_TEMPLATE_HTML,
    },
];
