import { Section } from "../components/Section"; const artists = [ { name: "sleepy_muzzle", url: "https://t.me/rerandpulseup", }, { name: "yoshi_ruko", url: "https://t.me/yoshi_ruko", }, { name: "ketfox", url: "https://vk.com/ketfox18", }, { name: "whizzie", url: "https://bsky.app/profile/whizzie.bsky.social", }, ]; export const Footer = () => { return (
Arts by:
{artists.map((item) => ( {item.name} ))}
Font: LT Superior by LyonsType (License)
); };