Split pages and commands into editable modules

This commit is contained in:
2026-07-27 09:44:56 +09:00
parent ae0f6bc970
commit eac572dcaf
18 changed files with 112 additions and 37 deletions
+10
View File
@@ -0,0 +1,10 @@
export const name = 'projects';
export const title = 'Projects';
// Replace these entries with your own work, or load them from config.
export function render({ config }) {
return (config.pages?.projects?.lines || [
'Project One — what it does',
'Project Two — what you learned'
]).join('\n');
}