“We weren’t interested in selling visions that fall apart the moment someone buys in. We wanted to build products that last.”``` -------------------------------- ### Basic Kbd Usage Source: https://docs.once-ui.com/once-ui/components/kbd Demonstrates the basic usage of the Kbd component to display individual keys. ```jsx Tab Enter Shift Esc ``` -------------------------------- ### Basic Dropdown Usage Source: https://docs.once-ui.com/once-ui/components/dropdown Demonstrates a simple dropdown with three selectable options. Use this for standard selection scenarios. ```javascript const [selected, setSelected] = useState(""); const handleSelect = (value: string) => { setSelected(value); }; return (