"use client" import { useState } from "react" import { motion, AnimatePresence } from "framer-motion" import { cn } from "@/lib/utils" import Link from "next/link" import { Smartphone } from "lucide-react" export const FloatingNavbar = ({ navItems, className, }: { navItems: { name: string link: string }[] className?: string }) => { const [active, setActive] = useState(null) return (
Denta koas
) }