Initial landing page

This commit is contained in:
Jose Selesan
2026-06-09 09:32:42 -03:00
commit 703d17cf2f
24 changed files with 621 additions and 0 deletions

10
.eleventy.js Normal file
View File

@@ -0,0 +1,10 @@
module.exports = function(eleventyConfig) {
eleventyConfig.addPassthroughCopy("src/css");
eleventyConfig.addPassthroughCopy("src/images");
return {
dir: {
input: "src",
output: "_site"
}
};
};