Components
Interactive Keyboard Keys which animates on clicking or pressing the key on keyboard.
npx shadcn@latest add https://21st.dev/r/jatin-yadav05/keyboard-keysLoading preview...
import { KeyboardKeys } from "@/components/ui/keyboard-keys";
export default function Page() {
return (
<main className="flex min-h-screen flex-col items-center justify-center gap-16 py-16">
<KeyboardKeys />
</main>
)
}