fix: fix className syntax error in component
Resolve Turbopack parsing error by concatenating className string. #VERCEL_SKIP Co-authored-by: Jeff Emmett <46964190+Jeff-Emmett@users.noreply.github.com>
This commit is contained in:
parent
54849f357a
commit
94e764a3de
|
|
@ -102,15 +102,10 @@ export default function Home() {
|
|||
|
||||
<Link
|
||||
href="/ics"
|
||||
className="inline-block mt-8 px-8 py-4 border-2 border-cyan-400 text-cyan-400 font-mono text-lg
|
||||
hover:bg-cyan-400/10 hover:shadow-[0_0_20px_rgba(0,255,255,0.5)]
|
||||
transition-all duration-300 relative group overflow-hidden"
|
||||
className="inline-block mt-8 px-8 py-4 border-2 border-cyan-400 text-cyan-400 font-mono text-lg hover:bg-cyan-400/10 hover:shadow-[0_0_20px_rgba(0,255,255,0.5)] transition-all duration-300 relative group overflow-hidden"
|
||||
>
|
||||
<span className="relative z-10">INITIALIZE CONNECTION</span>
|
||||
<div
|
||||
className="absolute inset-0 bg-gradient-to-r from-cyan-500/0 via-cyan-500/20 to-cyan-500/0
|
||||
translate-x-[-100%] group-hover:translate-x-[100%] transition-transform duration-700"
|
||||
/>
|
||||
<div className="absolute inset-0 bg-gradient-to-r from-cyan-500/0 via-cyan-500/20 to-cyan-500/0 translate-x-[-100%] group-hover:translate-x-[100%] transition-transform duration-700" />
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue