Multi-page developer portfolio. Dark mode, CSS Grid, monospace accents. 3 pages: home, about, projects.
3 pages · 6 variables
| Variable | Type | Default | Required |
|---|---|---|---|
| developer_name | text | Alex Chen | No |
| title | text | Full-Stack Developer | No |
| primary_color | color | #10b981 | No |
| github_url | url | https://github.com | No |
| text | [email protected] | No | |
| bio | textarea | A passionate developer who loves building things for the web. Experienced in modern JavaScript, React, Node.js, and cloud infrastructure. | No |
/
{{developer_name}} — {{title}}
/about
About — {{developer_name}}
/projects
Projects — {{developer_name}}
Deploy this template to your subdomain with one API call:
curl -X POST https://sutrena.com/api/site-templates/dev-portfolio/deploy \
-H "Authorization: Bearer st_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"variables": {
"developer_name": "Alex Chen",
"title": "Full-Stack Developer",
"primary_color": "#10b981",
"github_url": "https://github.com",
"email": "[email protected]",
"bio": "A passionate developer who loves building things for the web. Experienced in modern JavaScript, React, Node.js, and cloud infrastructure."
}
}'AI agents can deploy this template using the MCP tool:
sutrena_deploy_site_template({
templateId: "dev-portfolio",
variables: {
"developer_name": "Alex Chen",
"title": "Full-Stack Developer",
"primary_color": "#10b981",
"github_url": "https://github.com",
"email": "[email protected]",
"bio": "A passionate developer who loves building things for the web. Experienced in modern JavaScript, React, Node.js, and cloud infrastructure."
}
})