atomic-design-templates

Atomic Design: Templates

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 "atomic-design-templates" with this command: npx skills add thebushidocollective/han/thebushidocollective-han-atomic-design-templates

Atomic Design: Templates

Master the creation of templates - page-level layouts that define content structure without actual content. Templates establish the skeletal structure that pages will use.

What Are Templates?

Templates are the page-level objects that place components into a layout and articulate the design's underlying content structure. They are:

  • Composed of organisms: Arrange organisms into page layouts

  • Content-agnostic: Use placeholder content, not real data

  • Structural: Define where content types will appear

  • Reusable: Same template can be used by multiple pages

  • Responsive: Handle all viewport sizes

Common Template Types

Marketing Templates

  • Landing page layouts

  • Homepage layouts

  • Product showcase layouts

  • About/Company layouts

Application Templates

  • Dashboard layouts

  • Settings page layouts

  • Profile page layouts

  • List/Detail page layouts

Content Templates

  • Blog post layouts

  • Article layouts

  • Documentation layouts

  • Help center layouts

E-commerce Templates

  • Product listing layouts

  • Product detail layouts

  • Checkout layouts

  • Order confirmation layouts

MainLayout Template Example

Complete Implementation

// templates/MainLayout/MainLayout.tsx import React from 'react'; import { Header, type HeaderProps } from '@/components/organisms/Header'; import { Footer, type FooterProps } from '@/components/organisms/Footer'; import styles from './MainLayout.module.css';

export interface MainLayoutProps { /** Header configuration / headerProps: HeaderProps; /* Footer configuration / footerProps: FooterProps; /* Main content / children: React.ReactNode; /* Show breadcrumbs / showBreadcrumbs?: boolean; /* Breadcrumb component / breadcrumbs?: React.ReactNode; /* Maximum content width / maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | 'full'; /* Page background color */ background?: 'white' | 'gray' | 'primary'; }

export const MainLayout: React.FC<MainLayoutProps> = ({ headerProps, footerProps, children, showBreadcrumbs = false, breadcrumbs, maxWidth = 'lg', background = 'white', }) => { return ( <div className={${styles.layout} ${styles[bg-${background}]}}> <Header {...headerProps} />

  &#x3C;main className={styles.main}>
    {showBreadcrumbs &#x26;&#x26; breadcrumbs &#x26;&#x26; (
      &#x3C;div className={styles.breadcrumbs}>{breadcrumbs}&#x3C;/div>
    )}

    &#x3C;div className={`${styles.content} ${styles[`max-${maxWidth}`]}`}>
      {children}
    &#x3C;/div>
  &#x3C;/main>

  &#x3C;Footer {...footerProps} />
&#x3C;/div>

); };

MainLayout.displayName = 'MainLayout';

/* templates/MainLayout/MainLayout.module.css */ .layout { display: flex; flex-direction: column; min-height: 100vh; }

.main { flex: 1; display: flex; flex-direction: column; }

.breadcrumbs { padding: 16px 24px; background-color: var(--color-neutral-50); border-bottom: 1px solid var(--color-neutral-200); }

.content { flex: 1; margin: 0 auto; padding: 24px; width: 100%; }

/* Max Width Variants */ .max-sm { max-width: 640px; }

.max-md { max-width: 768px; }

.max-lg { max-width: 1024px; }

.max-xl { max-width: 1280px; }

.max-full { max-width: 100%; }

/* Background Variants */ .bg-white { background-color: var(--color-white); }

.bg-gray { background-color: var(--color-neutral-50); }

.bg-primary { background-color: var(--color-primary-50); }

/* Responsive adjustments */ @media (max-width: 768px) { .content { padding: 16px; } }

DashboardLayout Template Example

// templates/DashboardLayout/DashboardLayout.tsx import React, { useState } from 'react'; import { Header } from '@/components/organisms/Header'; import { Sidebar, type SidebarProps } from '@/components/organisms/Sidebar'; import styles from './DashboardLayout.module.css';

export interface DashboardLayoutProps { /** Header props / headerProps: { logo: React.ReactNode; user?: { name: string; email: string; avatar?: string }; onLogout?: () => void; }; /* Sidebar props / sidebarProps: SidebarProps; /* Main content / children: React.ReactNode; /* Page title / pageTitle?: string; /* Page description / pageDescription?: string; /* Page actions (buttons, etc.) / pageActions?: React.ReactNode; /* Sidebar initially collapsed */ sidebarCollapsed?: boolean; }

export const DashboardLayout: React.FC<DashboardLayoutProps> = ({ headerProps, sidebarProps, children, pageTitle, pageDescription, pageActions, sidebarCollapsed = false, }) => { const [isCollapsed, setIsCollapsed] = useState(sidebarCollapsed);

return ( <div className={styles.layout}> {/* Top Header */} <Header logo={headerProps.logo} navigation={[]} user={headerProps.user} onLogout={headerProps.onLogout} showSearch={false} />

  &#x3C;div className={styles.body}>
    {/* Sidebar */}
    &#x3C;Sidebar
      {...sidebarProps}
      isCollapsed={isCollapsed}
      onToggleCollapse={() => setIsCollapsed(!isCollapsed)}
    />

    {/* Main Content Area */}
    &#x3C;main className={styles.main}>
      {/* Page Header */}
      {(pageTitle || pageActions) &#x26;&#x26; (
        &#x3C;header className={styles.pageHeader}>
          &#x3C;div className={styles.titleSection}>
            {pageTitle &#x26;&#x26; &#x3C;h1 className={styles.pageTitle}>{pageTitle}&#x3C;/h1>}
            {pageDescription &#x26;&#x26; (
              &#x3C;p className={styles.pageDescription}>{pageDescription}&#x3C;/p>
            )}
          &#x3C;/div>
          {pageActions &#x26;&#x26; (
            &#x3C;div className={styles.pageActions}>{pageActions}&#x3C;/div>
          )}
        &#x3C;/header>
      )}

      {/* Page Content */}
      &#x3C;div className={styles.content}>{children}&#x3C;/div>
    &#x3C;/main>
  &#x3C;/div>
&#x3C;/div>

); };

DashboardLayout.displayName = 'DashboardLayout';

/* templates/DashboardLayout/DashboardLayout.module.css */ .layout { display: flex; flex-direction: column; min-height: 100vh; }

.body { display: flex; flex: 1; }

.main { flex: 1; display: flex; flex-direction: column; overflow-x: hidden; background-color: var(--color-neutral-50); }

.pageHeader { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 24px; background-color: var(--color-white); border-bottom: 1px solid var(--color-neutral-200); }

.titleSection { flex: 1; }

.pageTitle { margin: 0; font-size: 24px; font-weight: 600; color: var(--color-neutral-900); }

.pageDescription { margin: 4px 0 0; font-size: 14px; color: var(--color-neutral-500); }

.pageActions { display: flex; gap: 12px; flex-shrink: 0; }

.content { flex: 1; padding: 24px; overflow-y: auto; }

@media (max-width: 768px) { .pageHeader { flex-direction: column; align-items: stretch; }

.pageActions { margin-top: 16px; }

.content { padding: 16px; } }

AuthLayout Template Example

// templates/AuthLayout/AuthLayout.tsx import React from 'react'; import styles from './AuthLayout.module.css';

export interface AuthLayoutProps { /** Logo element / logo: React.ReactNode; /* Page title / title: string; /* Page subtitle / subtitle?: string; /* Form content / children: React.ReactNode; /* Footer content (links, etc.) / footer?: React.ReactNode; /* Background image URL / backgroundImage?: string; /* Show decorative side panel / showSidePanel?: boolean; /* Side panel content */ sidePanelContent?: React.ReactNode; }

export const AuthLayout: React.FC<AuthLayoutProps> = ({ logo, title, subtitle, children, footer, backgroundImage, showSidePanel = false, sidePanelContent, }) => { return ( <div className={styles.layout}> {/* Side Panel (optional) */} {showSidePanel && ( <div className={styles.sidePanel} style={ backgroundImage ? { backgroundImage: url(${backgroundImage}) } : undefined } > <div className={styles.sidePanelContent}>{sidePanelContent}</div> </div> )}

  {/* Main Content */}
  &#x3C;div className={styles.main}>
    &#x3C;div className={styles.container}>
      {/* Logo */}
      &#x3C;div className={styles.logo}>{logo}&#x3C;/div>

      {/* Header */}
      &#x3C;header className={styles.header}>
        &#x3C;h1 className={styles.title}>{title}&#x3C;/h1>
        {subtitle &#x26;&#x26; &#x3C;p className={styles.subtitle}>{subtitle}&#x3C;/p>}
      &#x3C;/header>

      {/* Form Content */}
      &#x3C;div className={styles.content}>{children}&#x3C;/div>

      {/* Footer */}
      {footer &#x26;&#x26; &#x3C;footer className={styles.footer}>{footer}&#x3C;/footer>}
    &#x3C;/div>
  &#x3C;/div>
&#x3C;/div>

); };

AuthLayout.displayName = 'AuthLayout';

/* templates/AuthLayout/AuthLayout.module.css */ .layout { display: flex; min-height: 100vh; }

.sidePanel { display: none; width: 50%; background-color: var(--color-primary-600); background-size: cover; background-position: center; position: relative; }

@media (min-width: 1024px) { .sidePanel { display: flex; align-items: center; justify-content: center; } }

.sidePanelContent { padding: 48px; color: var(--color-white); text-align: center; }

.main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 24px; background-color: var(--color-neutral-50); }

.container { width: 100%; max-width: 400px; }

.logo { text-align: center; margin-bottom: 32px; }

.header { text-align: center; margin-bottom: 32px; }

.title { margin: 0; font-size: 28px; font-weight: 700; color: var(--color-neutral-900); }

.subtitle { margin: 8px 0 0; font-size: 16px; color: var(--color-neutral-500); }

.content { background-color: var(--color-white); padding: 32px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); }

.footer { margin-top: 24px; text-align: center; font-size: 14px; color: var(--color-neutral-500); }

.footer a { color: var(--color-primary-500); text-decoration: none; }

.footer a:hover { text-decoration: underline; }

ProductListingLayout Template Example

// templates/ProductListingLayout/ProductListingLayout.tsx import React from 'react'; import { MainLayout, type MainLayoutProps } from '../MainLayout'; import styles from './ProductListingLayout.module.css';

export interface ProductListingLayoutProps { /** Main layout props / layoutProps: Omit<MainLayoutProps, 'children'>; /* Category title / categoryTitle: string; /* Category description / categoryDescription?: string; /* Product count / productCount: number; /* Filter sidebar content / filters: React.ReactNode; /* Sort/view controls / controls: React.ReactNode; /* Product grid content / products: React.ReactNode; /* Pagination content / pagination?: React.ReactNode; /* Show filters on mobile / mobileFiltersOpen?: boolean; /* Toggle mobile filters */ onToggleMobileFilters?: () => void; }

export const ProductListingLayout: React.FC<ProductListingLayoutProps> = ({ layoutProps, categoryTitle, categoryDescription, productCount, filters, controls, products, pagination, mobileFiltersOpen = false, onToggleMobileFilters, }) => { return ( <MainLayout {...layoutProps} maxWidth="xl"> {/* Category Header */} <header className={styles.header}> <div className={styles.titleSection}> <h1 className={styles.title}>{categoryTitle}</h1> {categoryDescription && ( <p className={styles.description}>{categoryDescription}</p> )} <span className={styles.count}>{productCount} products</span> </div> </header>

  &#x3C;div className={styles.body}>
    {/* Desktop Filters */}
    &#x3C;aside className={styles.sidebar}>
      &#x3C;div className={styles.sidebarContent}>{filters}&#x3C;/div>
    &#x3C;/aside>

    {/* Mobile Filters Overlay */}
    {mobileFiltersOpen &#x26;&#x26; (
      &#x3C;div className={styles.mobileFilters}>
        &#x3C;div className={styles.mobileFiltersHeader}>
          &#x3C;h2>Filters&#x3C;/h2>
          &#x3C;button onClick={onToggleMobileFilters}>Close&#x3C;/button>
        &#x3C;/div>
        &#x3C;div className={styles.mobileFiltersContent}>{filters}&#x3C;/div>
      &#x3C;/div>
    )}

    {/* Main Content */}
    &#x3C;div className={styles.main}>
      {/* Controls Bar */}
      &#x3C;div className={styles.controls}>
        &#x3C;button
          className={styles.mobileFilterButton}
          onClick={onToggleMobileFilters}
        >
          Filters
        &#x3C;/button>
        {controls}
      &#x3C;/div>

      {/* Product Grid */}
      &#x3C;div className={styles.products}>{products}&#x3C;/div>

      {/* Pagination */}
      {pagination &#x26;&#x26; (
        &#x3C;div className={styles.pagination}>{pagination}&#x3C;/div>
      )}
    &#x3C;/div>
  &#x3C;/div>
&#x3C;/MainLayout>

); };

ProductListingLayout.displayName = 'ProductListingLayout';

BlogPostLayout Template Example

// templates/BlogPostLayout/BlogPostLayout.tsx import React from 'react'; import { MainLayout, type MainLayoutProps } from '../MainLayout'; import { Avatar } from '@/components/atoms/Avatar'; import { Text } from '@/components/atoms/Typography'; import styles from './BlogPostLayout.module.css';

export interface Author { name: string; avatar?: string; bio?: string; }

export interface BlogPostLayoutProps { /** Main layout props / layoutProps: Omit<MainLayoutProps, 'children'>; /* Post title / title: string; /* Post subtitle / subtitle?: string; /* Featured image / featuredImage?: string; /* Author information / author: Author; /* Publication date / publishedAt: string; /* Reading time / readingTime?: string; /* Post categories/tags / tags?: React.ReactNode; /* Main article content / children: React.ReactNode; /* Table of contents / tableOfContents?: React.ReactNode; /* Author bio card / showAuthorBio?: boolean; /* Related posts / relatedPosts?: React.ReactNode; /* Comments section / comments?: React.ReactNode; /* Social share buttons */ shareButtons?: React.ReactNode; }

export const BlogPostLayout: React.FC<BlogPostLayoutProps> = ({ layoutProps, title, subtitle, featuredImage, author, publishedAt, readingTime, tags, children, tableOfContents, showAuthorBio = true, relatedPosts, comments, shareButtons, }) => { const formattedDate = new Date(publishedAt).toLocaleDateString('en-US', { month: 'long', day: 'numeric', year: 'numeric', });

return ( <MainLayout {...layoutProps} maxWidth="md"> <article className={styles.article}> {/* Article Header */} <header className={styles.header}> {tags && <div className={styles.tags}>{tags}</div>}

      &#x3C;h1 className={styles.title}>{title}&#x3C;/h1>

      {subtitle &#x26;&#x26; &#x3C;p className={styles.subtitle}>{subtitle}&#x3C;/p>}

      {/* Author &#x26; Meta */}
      &#x3C;div className={styles.meta}>
        &#x3C;div className={styles.author}>
          &#x3C;Avatar
            src={author.avatar}
            alt={author.name}
            initials={author.name.slice(0, 2).toUpperCase()}
            size="md"
          />
          &#x3C;div className={styles.authorInfo}>
            &#x3C;Text weight="semibold">{author.name}&#x3C;/Text>
            &#x3C;Text size="sm" color="muted">
              {formattedDate}
              {readingTime &#x26;&#x26; ` · ${readingTime}`}
            &#x3C;/Text>
          &#x3C;/div>
        &#x3C;/div>

        {shareButtons &#x26;&#x26; (
          &#x3C;div className={styles.share}>{shareButtons}&#x3C;/div>
        )}
      &#x3C;/div>
    &#x3C;/header>

    {/* Featured Image */}
    {featuredImage &#x26;&#x26; (
      &#x3C;figure className={styles.featuredImage}>
        &#x3C;img src={featuredImage} alt={title} />
      &#x3C;/figure>
    )}

    {/* Content with Optional TOC */}
    &#x3C;div className={styles.contentWrapper}>
      {/* Table of Contents (Desktop) */}
      {tableOfContents &#x26;&#x26; (
        &#x3C;aside className={styles.toc}>
          &#x3C;div className={styles.tocContent}>{tableOfContents}&#x3C;/div>
        &#x3C;/aside>
      )}

      {/* Main Content */}
      &#x3C;div className={styles.content}>{children}&#x3C;/div>
    &#x3C;/div>

    {/* Author Bio */}
    {showAuthorBio &#x26;&#x26; (
      &#x3C;footer className={styles.authorBio}>
        &#x3C;Avatar
          src={author.avatar}
          alt={author.name}
          initials={author.name.slice(0, 2).toUpperCase()}
          size="lg"
        />
        &#x3C;div>
          &#x3C;Text weight="semibold" size="lg">
            {author.name}
          &#x3C;/Text>
          {author.bio &#x26;&#x26; &#x3C;Text color="muted">{author.bio}&#x3C;/Text>}
        &#x3C;/div>
      &#x3C;/footer>
    )}

    {/* Share (Bottom) */}
    {shareButtons &#x26;&#x26; (
      &#x3C;div className={styles.bottomShare}>{shareButtons}&#x3C;/div>
    )}
  &#x3C;/article>

  {/* Related Posts */}
  {relatedPosts &#x26;&#x26; (
    &#x3C;section className={styles.relatedPosts}>
      &#x3C;h2>Related Posts&#x3C;/h2>
      {relatedPosts}
    &#x3C;/section>
  )}

  {/* Comments */}
  {comments &#x26;&#x26; (
    &#x3C;section className={styles.comments}>{comments}&#x3C;/section>
  )}
&#x3C;/MainLayout>

); };

BlogPostLayout.displayName = 'BlogPostLayout';

TwoColumnLayout Template Example

// templates/TwoColumnLayout/TwoColumnLayout.tsx import React from 'react'; import styles from './TwoColumnLayout.module.css';

export interface TwoColumnLayoutProps { /** Left column (usually main content) / main: React.ReactNode; /* Right column (usually sidebar) / sidebar: React.ReactNode; /* Sidebar position / sidebarPosition?: 'left' | 'right'; /* Sidebar width / sidebarWidth?: 'narrow' | 'medium' | 'wide'; /* Sticky sidebar / stickySidebar?: boolean; /* Reverse on mobile (show sidebar first) / reverseMobile?: boolean; /* Gap between columns */ gap?: 'sm' | 'md' | 'lg'; }

export const TwoColumnLayout: React.FC<TwoColumnLayoutProps> = ({ main, sidebar, sidebarPosition = 'right', sidebarWidth = 'medium', stickySidebar = false, reverseMobile = false, gap = 'md', }) => { const layoutClass = [ styles.layout, styles[sidebar-${sidebarPosition}], styles[width-${sidebarWidth}], styles[gap-${gap}], reverseMobile && styles.reverseMobile, ] .filter(Boolean) .join(' ');

const sidebarClass = [ styles.sidebar, stickySidebar && styles.sticky, ] .filter(Boolean) .join(' ');

return ( <div className={layoutClass}> <main className={styles.main}>{main}</main> <aside className={sidebarClass}>{sidebar}</aside> </div> ); };

TwoColumnLayout.displayName = 'TwoColumnLayout';

Best Practices

  1. Use Placeholder Content

// GOOD: Template with placeholder content slots const ProductDetailLayout = ({ productGallery, // Placeholder for gallery component productInfo, // Placeholder for product details productTabs, // Placeholder for tabs relatedProducts, // Placeholder for recommendations }) => ( <div> <section>{productGallery}</section> <section>{productInfo}</section> <section>{productTabs}</section> <section>{relatedProducts}</section> </div> );

// BAD: Template with hardcoded content const ProductDetailLayout = ({ product }) => ( <div> <ProductGallery images={product.images} /> {/* Too specific /} <h1>{product.name}</h1> {/ Real content */} <p>{product.description}</p> </div> );

  1. Define Clear Content Areas

// GOOD: Clear, named content slots interface PageTemplateProps { header: React.ReactNode; hero?: React.ReactNode; main: React.ReactNode; sidebar?: React.ReactNode; footer: React.ReactNode; }

// BAD: Generic children only interface PageTemplateProps { children: React.ReactNode; }

  1. Handle Responsive Layouts

// GOOD: Responsive considerations built-in const DashboardLayout = ({ sidebar, main }) => ( <div className={styles.layout}> <aside className={styles.sidebar}>{sidebar}</aside> <main className={styles.main}>{main}</main> </div> );

// CSS handles responsive behavior // .sidebar { @media (max-width: 768px) { display: none; } }

  1. Keep Templates Thin

// GOOD: Template just arranges organisms const MainLayout = ({ header, main, footer }) => ( <div className={styles.layout}> <div className={styles.header}>{header}</div> <div className={styles.main}>{main}</div> <div className={styles.footer}>{footer}</div> </div> );

// BAD: Template with business logic const MainLayout = ({ userId }) => { const user = useUser(userId); // Fetching data const isAdmin = user?.role === 'admin'; // Business logic

return ( <div> <Header user={user} showAdmin={isAdmin} /> {/* ... */} </div> ); };

Anti-Patterns to Avoid

  1. Templates with Real Content

// BAD: Hardcoded real content const HomepageLayout = () => ( <div> <h1>Welcome to Our Store</h1> {/* Real content! /} <p>Shop our latest collection...</p> {/ Real content! */} </div> );

// GOOD: Content passed as props/children const HomepageLayout = ({ heroTitle, heroDescription }) => ( <div> <h1>{heroTitle}</h1> <p>{heroDescription}</p> </div> );

  1. Over-Nested Templates

// BAD: Templates containing templates const AppLayout = () => ( <BaseLayout> <AuthLayout> <DashboardLayout> {/* Too much nesting */} </DashboardLayout> </AuthLayout> </BaseLayout> );

// GOOD: Choose appropriate template directly const AppPage = () => ( <DashboardLayout> {/* Content */} </DashboardLayout> );

  1. Templates with Too Many Props

// BAD: Too many configuration options interface LayoutProps { showHeader: boolean; showFooter: boolean; showSidebar: boolean; sidebarPosition: 'left' | 'right'; headerVariant: 'default' | 'minimal' | 'transparent'; footerVariant: 'default' | 'minimal'; maxWidth: 'sm' | 'md' | 'lg' | 'xl'; // ... 20 more props }

// GOOD: Create separate templates const FullPageLayout = ({ ... }) => { ... }; const MinimalLayout = ({ ... }) => { ... }; const SidebarLayout = ({ ... }) => { ... };

Template Composition Patterns

Nested Layouts

// Base layout for all pages const BaseLayout = ({ children }) => ( <div className="base"> <SkipLink /> {children} </div> );

// Marketing layout extending base const MarketingLayout = ({ children }) => ( <BaseLayout> <MarketingHeader /> <main>{children}</main> <MarketingFooter /> </BaseLayout> );

// App layout extending base const AppLayout = ({ children }) => ( <BaseLayout> <AppHeader /> <main>{children}</main> </BaseLayout> );

Slot-Based Layouts

interface SlotLayoutProps { slots: { header?: React.ReactNode; sidebar?: React.ReactNode; main: React.ReactNode; footer?: React.ReactNode; }; }

const SlotLayout: React.FC<SlotLayoutProps> = ({ slots }) => ( <div className={styles.layout}> {slots.header && <header>{slots.header}</header>} <div className={styles.body}> {slots.sidebar && <aside>{slots.sidebar}</aside>} <main>{slots.main}</main> </div> {slots.footer && <footer>{slots.footer}</footer>} </div> );

When to Use This Skill

  • Creating page structure patterns

  • Building reusable layout components

  • Establishing consistent page architectures

  • Setting up responsive frameworks

  • Defining content slot patterns

Related Skills

  • atomic-design-fundamentals

  • Core methodology overview

  • atomic-design-organisms

  • Building complex organisms

  • atomic-design-integration

  • Framework-specific patterns

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

android-jetpack-compose

No summary provided by upstream source.

Repository SourceNeeds Review
General

fastapi-async-patterns

No summary provided by upstream source.

Repository SourceNeeds Review
General

storybook-story-writing

No summary provided by upstream source.

Repository SourceNeeds Review
General

atomic-design-fundamentals

No summary provided by upstream source.

Repository SourceNeeds Review