import Image from "next/image"; export default function PhotoPanel({ src, alt, tag, className = "", priority = false, }: { src: string; alt: string; tag?: string; className?: string; priority?: boolean; }) { return (
{alt}
{tag && (
{tag}
)}
); }