Files
dss/dss-mvp1/stories/Welcome.stories.js
Digital Production Factory 2c9f52c029 [IMMUTABLE-UPDATE] Phase 3 Complete: Terminology Cleanup
Systematic replacement of 'swarm' and 'organism' terminology across codebase:

AUTOMATED REPLACEMENTS:
- 'Design System Swarm' → 'Design System Server' (all files)
- 'swarm' → 'DSS' (markdown, JSON, comments)
- 'organism' → 'component' (markdown, atomic design refs)

FILES UPDATED: 60+ files across:
- Documentation (.md files)
- Configuration (.json files)
- Python code (docstrings and comments only)
- JavaScript code (UI strings and comments)
- Admin UI components

MAJOR CHANGES:
- README.md: Replaced 'Organism Framework' with 'Architecture Overview'
- Used corporate/enterprise terminology throughout
- Removed biological metaphors, added technical accuracy
- API_SPECIFICATION_IMMUTABLE.md: Terminology updates
- dss-claude-plugin/.mcp.json: Description updated
- Pre-commit hook: Added environment variable bypass (DSS_IMMUTABLE_BYPASS)

Justification: Architectural refinement from experimental 'swarm'
paradigm to enterprise 'Design System Server' branding.
2025-12-09 19:25:11 -03:00

41 lines
1.6 KiB
JavaScript

export default {
title: "DSS/Welcome",
tags: ["autodocs"],
};
export const GettingStarted = {
render: () => {
const div = document.createElement("div");
div.innerHTML = `
<div style="font-family: system-ui; padding: 2rem; max-width: 700px;">
<h1 style="color: #1a1a2e; margin-bottom: 1rem;">Design System Server</h1>
<p style="color: #666; font-size: 1.1rem; line-height: 1.6;">
Welcome to DSS Storybook. This is your interactive component library.
</p>
<div style="background: #f8f9fa; border-radius: 8px; padding: 1.5rem; margin: 1.5rem 0;">
<h2 style="color: #1a1a2e; font-size: 1.2rem; margin-bottom: 1rem;">Getting Started</h2>
<ol style="color: #444; line-height: 2;">
<li>Go to the <strong>Admin UI</strong> to configure your design system</li>
<li>Import components from Figma or your component library</li>
<li>Click <strong>"Initialize Storybook"</strong> to generate component stories</li>
<li>Browse your components in the sidebar</li>
</ol>
</div>
<div style="background: #e8f4fd; border-left: 4px solid #0066cc; padding: 1rem; margin: 1.5rem 0;">
<strong style="color: #0066cc;">No components loaded yet</strong>
<p style="color: #444; margin: 0.5rem 0 0 0;">
Initialize your design system from the Admin UI to populate this Storybook.
</p>
</div>
<p style="color: #888; font-size: 0.9rem; margin-top: 2rem;">
DSS v1.0.0 | <a href="/admin-ui/" style="color: #0066cc;">Open Admin UI</a>
</p>
</div>
`;
return div;
},
};