24 lines
809 B
Text
24 lines
809 B
Text
|
|
# 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,
|
||
|
|
}
|