Craft is a minimalist Design System that combines a single component file and a single CSS file with Next.js best practices for building websites quickly. It leverages Next.js, Tailwind, shadcn/ui, and TypeScript to provide a streamlined development experience while maintaining a clean, modern aesthetic.
Headings
HTML Attribute
h1
Preview
Heading 1
HTML Attribute
h2
Preview
Heading 2
HTML Attribute
h3
Preview
Heading 3
HTML Attribute
h4
Preview
Heading 4
HTML Attribute
h5
Preview
Heading 5
HTML Attribute
h6
Preview
Heading 6
Text Styles
HTML Attribute
p
Preview
Regular paragraph text.
HTML Attribute
lead
Preview
Lead paragraph text that stands out from regular text.
HTML Attribute
large
Preview
Large text that's bigger than regular text.
HTML Attribute
small
Preview
Small text that's smaller than regular text.
HTML Attribute
muted
Preview
Muted text with reduced emphasis.
Lists
HTML Attribute
ul
Preview
This is an example of an unordered list
Unordered list item 1
Unordered list item 2
Unordered list item 3
HTML Attribute
ol
Preview
This is an example of an ordered list
Ordered list item 1
Ordered list item 2
Ordered list item 3
HTML Attribute
dl
Preview
Definition Term
Definition description explaining the term above.
Another Term
Another description for the term above.
Block Elements
HTML Attribute
blockquote
Preview
A well-known quote, contained in a blockquote element.- Source Attribution
HTML Attribute
pre
Preview
function example() {
console.log("Hello World");
}