style: change the style

This commit is contained in:
RiO
2024-12-25 07:03:55 +05:30
parent 9ee442b438
commit b669106e4b

View File

@@ -7,12 +7,12 @@ export function GithubSponsorButton() {
href="https://github.com/sponsors/eshanized"
target="_blank"
rel="noopener noreferrer"
whileHover={{ scale: 1.05 }}
whileHover={{ scale: 1.05, boxShadow: '0 4px 12px rgba(0, 0, 0, 0.1)' }}
whileTap={{ scale: 0.95 }}
className="inline-flex items-center gap-2 px-6 py-3 bg-[#2ea44f] text-white rounded-lg hover:bg-[#2c974b] transition-colors"
className="inline-flex items-center gap-3 px-6 py-3 bg-[#2ea44f] text-white rounded-lg shadow-md hover:bg-[#2c974b] transition-all duration-300 ease-out"
>
<Github className="h-5 w-5" />
Sponsor on GitHub
<span className="font-semibold">Sponsor on GitHub</span>
</motion.a>
);
}
}