"use client"; import Image from "next/image"; import { Typography } from "@material-tailwind/react"; const SPONSORS = [ "coinbase", "spotify", "pinterest", "google", "amazon", "netflix", ]; export function SponsoredBy() { return (
SPONSORED BY
{SPONSORS.map((logo, key) => ( {logo} ))}
); } export default SponsoredBy;