forked from ourworld_web/www_engage_os
49 lines
1.4 KiB
TypeScript
49 lines
1.4 KiB
TypeScript
import { useRef, useState } from 'react'
|
|
import { Link } from 'react-router-dom'
|
|
import { AnimatePresence, motion } from 'framer-motion'
|
|
|
|
export function NavLinks() {
|
|
let [hoveredIndex, setHoveredIndex] = useState<number | null>(null)
|
|
let timeoutRef = useRef<number | null>(null)
|
|
|
|
return [
|
|
['Features', '/#features'],
|
|
['Reviews', '/#reviews'],
|
|
['Pricing', '/#pricing'],
|
|
['FAQs', '/#faqs'],
|
|
].map(([label, href], index) => (
|
|
<Link
|
|
key={label}
|
|
to={href}
|
|
className="relative -mx-3 -my-2 rounded-lg px-3 py-2 text-sm text-gray-300 transition-colors delay-150 hover:text-white hover:delay-0"
|
|
onMouseEnter={() => {
|
|
if (timeoutRef.current) {
|
|
window.clearTimeout(timeoutRef.current)
|
|
}
|
|
setHoveredIndex(index)
|
|
}}
|
|
onMouseLeave={() => {
|
|
timeoutRef.current = window.setTimeout(() => {
|
|
setHoveredIndex(null)
|
|
}, 200)
|
|
}}
|
|
>
|
|
<AnimatePresence>
|
|
{hoveredIndex === index && (
|
|
<motion.span
|
|
className="absolute inset-0 rounded-lg bg-gray-800"
|
|
layoutId="hoverBackground"
|
|
initial={{ opacity: 0 }}
|
|
animate={{ opacity: 1, transition: { duration: 0.15 } }}
|
|
exit={{
|
|
opacity: 0,
|
|
transition: { duration: 0.15 },
|
|
}}
|
|
/>
|
|
)}
|
|
</AnimatePresence>
|
|
<span className="relative z-10">{label}</span>
|
|
</Link>
|
|
))
|
|
}
|