ss-page

Featured

Scaffold a new mobile page/screen using the StyleSeed layout patterns

Web & Frontend 852 stars 75 forks Updated 5 days ago MIT

Install

View on GitHub

Quality Score: 95/100

Stars 20%
98
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

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