Glare Hover Call To Action
Glare Hover Call To Action is a React and Tailwind CSS button component from Magic UI, licensed MIT. Copy it and paste it into your project.
Magic UI
MIT
buttons
What it is
Glare Hover Call To Action is a React and Tailwind CSS button component from Magic UI, 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 Magic UI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Glare Hover Call To Action
import { Button } from "@/components/ui/button"
import {
Card,
CardDescription,
CardFooter,
CardHeader,
CardTitle,
} from "@/components/ui/card"
import { GlareHover } from "@/registry/magicui/glare-hover"
export default function Cta() {
return (
<GlareHover className="rounded-xl" color="#505050" duration={700}>
<Card className="w-full text-center">
<CardHeader>
<p className="text-muted-foreground text-xs font-medium tracking-widest uppercase">
14-day free trial ยท No card required
</p>
<CardTitle className="text-2xl tracking-tight">
Ready to get started?
</CardTitle>
<CardDescription className="mx-auto max-w-sm">
Join 4,000+ teams already using our platform to ship faster.
</CardDescription>
</CardHeader>
<CardFooter className="justify-center gap-2">
<Button>Start free trial</Button>
<Button variant="outline">View demo</Button>
</CardFooter>
</Card>
</GlareHover>
)
}