import { Section } from "../components/Section"; import { ProjectLink } from "../components/ProjectLink"; const links = [ { icon: "/icons/mdi_github.svg", text: "Anix", desc: "Unofficial web client for anixart", url: "https://github.com/radiquum/AniX", preview: [ "/images/projects/anix/1.jpg", "/images/projects/anix/2.png", "/images/projects/anix/3.png", ], }, { icon: "/icons/mdi_github.svg", text: "Furaffinity-dl", desc: "Fork with additional functionality", url: "https://github.com/radiquum/furaffinity-dl", preview: [ "/images/projects/fadl.png", ], }, { icon: "/icons/mdi_github.svg", text: "TG-Photos", desc: "Google Photo like bot for Telegram", url: "https://github.com/radiquum/TG-Photos", preview: [ "/images/projects/tgp/1.png", "/images/projects/tgp/2.png", "/images/projects/tgp/3.png", ], }, { icon: "/icons/mdi_github.svg", text: "TIG", desc: "Generate images from text", url: "https://github.com/radiquum/TIG", preview: [ "/images/projects/tig/1.png", "/images/projects/tig/2.png", ], }, { icon: "/icons/mdi_github.svg", text: "GitHub", desc: "Other Projects", url: "https://github.com/radiquum", preview: [ "/images/projects/gh.png", ], }, { icon: "/icons/wahsu.svg", text: "wah.su", desc: "Self-Hosting project", url: "https://wah.su", preview: [ "/images/projects/wah-su.png", ], }, { icon: "/icons/ic_baseline-telegram.svg", text: "Red Pandas Stickers", desc: "Collection of Red Panda sticker packs", url: "https://t.me/red_panda_stickers", preview: [ "/images/projects/rps/1.jpg", "/images/projects/rps/2.jpg", "/images/projects/rps/3.jpg", "/images/projects/rps/4.jpg", ], }, ]; export const Projects = () => { return (

Projects

{links.map((item) => ( ))}
); };