"use client"; import Button from "@/components/Button"; import Card from "@/components/Card"; import { ArrowDownIcon, ArrowUpIcon } from "@heroicons/react/24/solid"; import { useState } from "react"; import feelyCenterLogo from "@/public/content/feelycenter.png"; import ommTestsLogo from "@/public/content/omm_logo.png"; import tcmmTestsLogo from "@/public/content/tcm_tests.png"; import womack from "@/public/content/womack.png"; import tivity from "@/public/content/tivity.png"; import Image from "next/image"; interface Props { className?: string; } const ProExp = ({ className }: Props) => { const cardYearsStyle = "italic my-2"; const cardPositionStyle = "font-bold my-2"; const logoStyle = "h-32 w-auto"; const [showAll, setShowAll] = useState(false); return (