'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import './Header.css'; export default function Header() { const pathname = usePathname(); const isActive = (path) => pathname === path; return (

RedThread

AI
); }