import { Button } from "@/components/ui/button"
function Button(){
return(
<>
<Button
className="bg-zinc-800/40 hover:bg-zinc-800/60 text-zinc-400 px-6 py-4 hover:text-zinc-200 border border-zinc-800 transition-all duration-300 rounded-xl active:scale-95"
>
Click me
</Button>
</>
)
}
export default Button