Components
Loading preview...
A nostalgic button from Windows 98 era
@thefathdev
npx shadcn@latest add https://21st.dev/r/thefathdev/win-98-buttonimport { Win98Button } from "@/components/ui/win-98-button";
function Win98ButtonDemo() {
return (
<div className="w-full h-screen max-h-[300px] bg-[silver] flex items-center justify-center">
<Win98Button>Click me</Win98Button>
</div>
);
}
export { Win98ButtonDemo };