import Image from "next/image"; import SourceCard from "./elements/SourceCard"; export default function Sources({ sources, }: { sources: { name: string; url: string }[]; }) { return (
footer

sources{" "}

{sources.length > 0 ? ( sources.map((source) => ( )) ) : ( <>
)}
); }