"use client"; import { useState, type PropsWithChildren } from "react"; import { Heading } from "../ui/heading"; import Image from "next/image"; import { Button } from "../ui/button"; import { cn } from "@/lib/utils"; import { anchorTags } from "@/lib/routes"; import { collectionHeaderImage } from "@/lib/assets"; export const CollectionHeaderWrapper = ( props: PropsWithChildren<{ heading: string }> ) => { const [showMore, setShowMore] = useState(false); return (