"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 midwesternLogo from "@/public/content/midwestern_college.png"; import tuoroLogo from "@/public/content/tuoro_university.png"; import atStillLogo from "@/public/content/at_still.svg"; import westernULogo from "@/public/content/western_university.png"; import cranialLogo from "@/public/content/osteopathic_cranial_academy.png"; import aaoLogo from "@/public/content/aao.webp"; import Image from "next/image"; interface Props { className?: string; } const AcademicAppts = ({ 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 (