Button Hover Multiple
Button Hover Multiple is a React and Tailwind CSS overlay component from UI Layouts, licensed MIT. Copy it and paste it into your project.
UI Layouts
MIT
overlays
What it is
Button Hover Multiple is a React and Tailwind CSS overlay component from UI Layouts, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
No packages beyond the project baseline
Licence
This component comes from UI Layouts and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Button Hover Multiple
'use client';
const ButtonHoverMultiple = () => {
return (
<>
<button className='group relative'>
<div
className='relative z-10 inline-flex h-12 items-center justify-center overflow-hidden rounded-full
bg-linear-to-r dark:from-[#070e41] dark:to-[#263381] from-[#f6f7ff] to-[#f5f6ff] dark:border-[rgb(76_100_255)] border-2 border-[#263381]
bg-transparent px-6 font-medium dark:text-white text-black transition-all duration-300 group-hover:-translate-x-3 group-hover:-translate-y-3'
>
Contact me
</div>
<div className='absolute inset-0 z-0 h-full w-full rounded-full transition-all duration-300 group-hover:-translate-x-3 group-hover:-translate-y-3 group-hover:[box-shadow:5px_5px_#394481,10px_10px_#5766be,15px_15px_#8898f3]'></div>
</button>
</>
);
};
export default ButtonHoverMultiple;