import { getCollections } from "@/lib/store/products"; import clsx from "clsx"; import Link from "next/link"; import { usePathname } from "next/navigation"; export default async function Collections() { const collections = await getCollections(); const pathname = usePathname(); return ( <> ); }