Complete Next.js 16 application with 13 fully implemented modules: Email Signature, Word XML Generator, Registratura, Dashboard, Tag Manager, IT Inventory, Address Book, Password Vault, Mini Utilities, Prompt Generator, Digital Signatures, Word Templates, and AI Chat. Includes core platform systems (module registry, feature flags, storage abstraction, i18n, theming, auth stub, tagging), 16 technical documentation files, Docker deployment config, and legacy HTML tool reference. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
18 lines
585 B
TypeScript
18 lines
585 B
TypeScript
import type { ModuleConfig } from '@/core/module-registry/types';
|
|
|
|
export const emailSignatureConfig: ModuleConfig = {
|
|
id: 'email-signature',
|
|
name: 'Generator Semnătură Email',
|
|
description: 'Generator de semnături email profesionale cu suport multi-firmă și variante de layout',
|
|
icon: 'mail',
|
|
route: '/email-signature',
|
|
category: 'generators',
|
|
featureFlag: 'module.email-signature',
|
|
visibility: 'all',
|
|
version: '0.1.0',
|
|
dependencies: [],
|
|
storageNamespace: 'email-signature',
|
|
navOrder: 20,
|
|
tags: ['email', 'semnătură', 'generator'],
|
|
};
|