website-htmx-rustelo-code/site/config/footer.ncl

24 lines
809 B
Text
Raw Permalink Normal View History

2026-07-10 03:44:13 +01:00
# Footer metadata (title, descriptions, copyright, social links)
#
# Language-keyed fields use ISO 639-1 codes matching site.languages.
let site_c = import "site/contracts.ncl" in
{
footer = {
title = "Jesús Pérez",
company_desc = {
en = "Rust Developer & Infrastructure Consultant",
es = "Desarrollador Rust y Consultor de Infraestructura",
},
copyright_text = {
en = "© 2024 Jesús Pérez. All rights reserved.",
es = "© 2024 Jesús Pérez. Todos los derechos reservados.",
},
social_links = [
{ name = "LinkedIn", url = "https://linkedin.com/in/jesusperezlorenzo", icon = "fab fa-linkedin" },
{ name = "GitHub", url = "https://github.com/jesusperezlorenzo", icon = "fab fa-github" },
],
} | site_c.FooterMetadata,
}