"use client"; import React from "react"; import Link from "next/link"; import { AiOutlineHome, AiOutlineShoppingCart } from "react-icons/ai"; import { FiUser } from "react-icons/fi"; import { usePathname } from "next/navigation"; export default function TabLayout({ children }) { const pathname = usePathname(); const getLinkStyle = (path) => { const isActive = pathname === path; return `flex flex-col items-center ${ isActive ? "text-yellow-500" : "text-gray-500" }`; }; return (