Skip to content

Commit

Permalink
Merge pull request #72 from pani2004/issue#71
Browse files Browse the repository at this point in the history
feat: add the hover effect
  • Loading branch information
harmeetsingh11 authored Jun 12, 2024
2 parents 6059286 + 6caec56 commit a8dd02f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ const Hero = () => {
<div className="relative z-10 max-w-screen-xl px-4 py-8 mx-auto text-center lg:py-16">
<h1 className="mb-4 text-4xl font-extrabold leading-none tracking-tight text-gray-900 md:text-5xl lg:text-6xl dark:text-white"><span className="text-transparent bg-clip-text bg-gradient-to-r to-[rgba(23,168,225,0.99)] from-[rgb(224,116,224)]">Revolutionize</span> Your Codebase with AI-Powered <span className="text-transparent bg-clip-text bg-gradient-to-r to-[rgba(23,168,225,0.99)] from-[rgb(224,116,224)]">Refactoring</span></h1>
<p className="mb-8 text-lg font-normal text-gray-500 lg:text-xl sm:px-16 lg:px-48 dark:text-gray-200">Unleash the potential of cutting-edge artificial intelligence with our Code Refactoring AI tool. Elevate your development workflow as our tool intelligently analyzes and enhances your code, promoting efficiency, readability, and maintainability. Say goodbye to manual refactoring hassles and welcome a new era of code optimization with our innovative solution. Explore the future of coding – where AI meets craftsmanship.</p>
<a href="#main" className="inline-flex justify-center items-center py-2.5 px-5 text-base font-medium text-center text-white rounded-lg bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:ring-blue-300 dark:focus:ring-blue-900">
<a href="#main" className="inline-flex justify-center items-center py-2.5 px-5 text-base font-medium text-center text-white rounded-lg bg-blue-700 hover:bg-blue-800 focus:ring-4 focus:ring-blue-300 dark:focus:ring-blue-900 group">
Try it
<svg className="w-3.5 h-3.5 ms-2 rtl:rotate-180" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 10">
<svg className="w-3.5 h-3.5 ms-2 rtl:rotate-180 transform group-hover:rotate-90 transition-transform duration-300" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 10">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M1 5h12m0 0L9 1m4 4L9 9"/>
</svg>
</a>
Expand All @@ -19,4 +19,4 @@ const Hero = () => {
)
}

export default Hero
export default Hero;

0 comments on commit a8dd02f

Please sign in to comment.