building-nds-ui

Generates UI in the style of National Design Studio - the team behind realfood.gov, trumprx.gov, and americabydesign.gov.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "building-nds-ui" with this command: npx skills add naga-k/nds-ui-skill/naga-k-nds-ui-skill-building-nds-ui

NDS UI Style

Generates UI in the style of National Design Studio - the team behind realfood.gov, trumprx.gov, and americabydesign.gov.

Typography

  • Headlines: Instrument Serif (or Playfair Display, DM Serif), scale 4xl-8xl

  • Body: Inter or system-ui sans-serif

  • Labels: Monospace uppercase, tracking-widest

// Next.js font setup import { Instrument_Serif, Inter } from 'next/font/google'

const serif = Instrument_Serif({ weight: '400', subsets: ['latin'], variable: '--font-serif' }) const sans = Inter({ subsets: ['latin'], variable: '--font-sans' })

Color Palettes

Light theme (realfood.gov):

--background: #F3F0D6; /* warm beige */ --foreground: #1a1a1a; --muted: #e8e5d0;

Dark theme (trumprx.gov):

--background: #0a0a0a; --foreground: #ffffff; --accent: #f5f5dc; /* warm cream */

Layout Principles

  • Heroes: h-screen , centered content, bg-black/30 overlay on images

  • Max width: max-w-7xl (1280px)

  • Whitespace: px-6 mobile, px-12+ desktop

  • Sections: py-20 md:py-32 , alternating backgrounds

Core Patterns

Hero Section:

<section className="relative h-screen flex items-center justify-center"> <div className="absolute inset-0 bg-black/30" /> <Image src="..." fill className="object-cover -z-10" /> <div className="relative z-10 text-center text-white max-w-4xl px-6"> <h1 className="font-serif text-5xl md:text-7xl">Headline</h1> <p className="mt-6 text-xl md:text-2xl">Subheadline</p> </div> </section>

Statistics: Large serif numbers + monospace uppercase labels

Buttons: bg-white text-black px-8 py-4 hover:bg-gray-100 transition-colors

Navigation: Transparent over hero, logo left, minimal links right

Tailwind Config

extend: { colors: { 'warm-cream': '#F3F0D6', 'warm-beige': '#e8e5d0' }, fontFamily: { serif: ['var(--font-serif)', 'Georgia', 'serif'], sans: ['var(--font-sans)', 'system-ui', 'sans-serif'], }, }

Visual Style

  • Photography over illustrations

  • Semi-transparent overlays for text legibility

  • Minimal ornamentation

  • Alternating section backgrounds (cream/white/dark)

Reference

  • Components: See reference/components.md for full component examples

  • Sites: realfood.gov, trumprx.gov, americabydesign.gov, ndstudio.gov

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

image-gen

Generate AI images from text prompts. Triggers on: "生成图片", "画一张", "AI图", "generate image", "配图", "create picture", "draw", "visualize", "generate an image".

Archived SourceRecently Updated
General

explainer

Create explainer videos with narration and AI-generated visuals. Triggers on: "解说视频", "explainer video", "explain this as a video", "tutorial video", "introduce X (video)", "解释一下XX(视频形式)".

Archived SourceRecently Updated
General

asr

Transcribe audio files to text using local speech recognition. Triggers on: "转录", "transcribe", "语音转文字", "ASR", "识别音频", "把这段音频转成文字".

Archived SourceRecently Updated
General

axure-prototype-generator

Axure 原型代码生成器 - 输出 JavaScript 格式 HTML 代码,支持内联框架直接加载可交互原型

Archived SourceRecently Updated