Add Gruperly logotype and favicon from brand assets

Copy logotipo and isotipo assets to src/assets, expose them via
Eleventy passthrough, use the adaptive iso favicon in the head, and
replace the generic placeholder icons in header, footer and demo sidebar.
This commit is contained in:
Jose Selesan
2026-09-16 15:25:59 -03:00
parent 96e1358bdc
commit 56e67fa55d
11 changed files with 52 additions and 18 deletions

View File

@@ -5,6 +5,9 @@ export default function (eleventyConfig) {
host: "0.0.0.0",
});
// Copia los assets estáticos (logotipo, isotipo, favicon) a dist/assets.
eleventyConfig.addPassthroughCopy("src/assets");
eleventyConfig.addFilter("formatPrice", (value, currency) => {
const locale = currency === "ars" ? "es-AR" : "en-US";
return new Intl.NumberFormat(locale).format(value);