"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { motion } from "framer-motion"; export default function NavList({ list_items }) { const pathname = usePathname(); return ( ); }