ss-page
FeaturedScaffold a new mobile page/screen using the StyleSeed layout patterns
Web & Frontend 852 stars
75 forks Updated 5 days ago MIT
Install
Quality Score: 95/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Mobile Page Scaffolder
## When NOT to use
- For a single composed pattern within an existing page → use `/ss-pattern`
- For desktop-only screens — this skill is mobile-first
- For multi-page navigation structure → use `/ss-flow` first
- For tweaking an existing page — edit the file directly
Create a new page: **$0**
Description: $ARGUMENTS
## Instructions
1. Read the design system reference:
- `CLAUDE.md` for file structure and conventions
- `components/patterns/page-shell.tsx` for page layout
- `components/patterns/top-bar.tsx` for header pattern
- `components/patterns/bottom-nav.tsx` for navigation
2. Page structure template:
```tsx
import { PageShell, PageContent } from "@/components/patterns/page-shell"
import { TopBar, TopBarAction } from "@/components/patterns/top-bar"
import { BottomNav } from "@/components/patterns/bottom-nav"
export default function PageName() {
return (
<PageShell>
<TopBar
logo={/* logo or page title */}
subtitle={/* optional subtitle */}
actions={/* optional action buttons */}
/>
<PageContent>
{/* Page sections with space-y-6 */}
</PageContent>
<BottomNav items={[/* nav items */]} activeIndex={0} />
</PageShell>
)
}
```
3. Layout rules:
- Container: `max-w-[430px]` (mobile viewport)
- Page background: `bg-background`
- Section horizontal padding: `px-6`
- Section vertical spacing: `space-y-6`
- Bottom padding for nav: `pb-24`
- Cards: `...
Details
- Author
- bitjaru
- Repository
- bitjaru/styleseed
- Created
- 3 months ago
- Last Updated
- 5 days ago
- Language
- TypeScript
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
Web & Frontend Featured
ss-pattern
Generate a composed UI pattern (card layout, list, form section, grid, etc.) using design system primitives
852 Updated 5 days ago
bitjaru Web & Frontend Featured
ss-component
Generate a new UI component following the StyleSeed design conventions
852 Updated 5 days ago
bitjaru Web & Frontend Featured
ss-setup
Configure StyleSeed by selecting the output grammar, domain, page type, optional aesthetic profile, and bounded brand tokens before scaffolding a first screen.
852 Updated 5 days ago
bitjaru