No external libraries. Sticky nav, hero, feature grid, pricing table, testimonials, CSS-only FAQ accordion.
1 page · 8 variables
| Variable | Type | Default | Required |
|---|---|---|---|
| product_name | text | Acme | No |
| tagline | text | The modern platform for teams | No |
| primary_color | color | #6366f1 | No |
| cta_text | text | Start Free Trial | No |
| cta_url | url | # | No |
| feature_1 | text | Lightning Fast | No |
| feature_2 | text | Secure by Default | No |
| feature_3 | text | Team Collaboration | No |
Deploy this template to your subdomain with one API call:
curl -X POST https://sutrena.com/api/site-templates/saas-clean/deploy \
-H "Authorization: Bearer st_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"variables": {
"product_name": "Acme",
"tagline": "The modern platform for teams",
"primary_color": "#6366f1",
"cta_text": "Start Free Trial",
"cta_url": "#",
"feature_1": "Lightning Fast",
"feature_2": "Secure by Default",
"feature_3": "Team Collaboration"
}
}'AI agents can deploy this template using the MCP tool:
sutrena_deploy_site_template({
templateId: "saas-clean",
variables: {
"product_name": "Acme",
"tagline": "The modern platform for teams",
"primary_color": "#6366f1",
"cta_text": "Start Free Trial",
"cta_url": "#",
"feature_1": "Lightning Fast",
"feature_2": "Secure by Default",
"feature_3": "Team Collaboration"
}
})