chore: finalize about and contact pages, fix stylesheet path, add TODO comments for future improvements

This commit is contained in:
2025-08-15 00:18:50 -05:00
parent 16d93122ca
commit 4f9299e8b2
12 changed files with 664 additions and 175 deletions

View File

@@ -1,8 +1,8 @@
module.exports = function (eleventyConfig) {
// Pass through static assets without processing
eleventyConfig.addPassthroughCopy("src/images");
eleventyConfig.addPassthroughCopy("src/styles");
eleventyConfig.addPassthroughCopy("src/scripts");
// Pass through static assets to the root of output
eleventyConfig.addPassthroughCopy({ "src/images": "images" });
eleventyConfig.addPassthroughCopy({ "src/styles": "styles" });
eleventyConfig.addPassthroughCopy({ "src/scripts": "scripts" });
return {
dir: {
@@ -11,4 +11,4 @@ module.exports = function (eleventyConfig) {
includes: "_includes",
},
};
};
};