import { BlitzHeading, HighlightHeading, Subheading, } from "@/components/site/typography" import { Box, Container, List, Span, Stack, Tabs } from "@chakra-ui/react" import { LuBox, LuPaintBucket, LuType } from "react-icons/lu" import { ExampleCode, ExampleCodeWrapper } from "../example" const items = [ { icon: , value: "site/design-tokens", label: "Tokens", description: "Streamline design decisions with semantic tokens", }, { icon: , value: "site/typography", label: "Typography", description: "Customise your font related properties in one place", }, { icon: , value: "site/recipes", label: "Recipes", description: "Design components variants with ease", }, ] export const DesignSystemSection = () => { return ( Design System Build your design system on top of Chakra UI Spend less time writing UI code and more time building a great experience for your customers. {items.map((item) => ( {item.icon}

{item.label}.{" "} {item.description}

))}
{items.map((item) => ( {item.icon} {item.label} ))} {items.map((item) => ( ))}
) }