### Describe the bug ### Description The copyright text variable configured in parameters uses a hardcoded trademark string. * **Location:** [config/_default/params.toml](file:///c:/Users/Hp/microcks.io/config/_default/params.toml#L40) * **Rationale:** The copyright text is static, meaning it does not update to show the current year dynamically. This requires manual updates annually. * **How to Verify:** View the copyright information printed in the footer. ### Verification Flow ```mermaid graph TD A[Start: Inspect footer copyright element] --> B[Analyze copyright year parameters] B --> C{Is year hardcoded in params?} C -- Yes --> D[Issue Confirmed: Inflexible copyright configuration] C -- No --> E[Dynamic year generation] ```