Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 541 Bytes

components.md

File metadata and controls

15 lines (10 loc) · 541 Bytes

Components

The site is broken down into files, one file for each page, and one for each component.

Page files src/pages/ usually contain

  • The pages content
    • Components relevant only to that page
    • A custom hero section for an important page - A button that needs to vary from the rest of the site styles

And component files src/components/ usually contain

  • A component that's reused in multiple pages of the site
  • Styling specific to that individual component
  • logic and behavior specific to that component