"use client"; import { Button } from "@/components/ui/button"; import { Github, FileDown, FileText, FileSpreadsheet } from "lucide-react"; const buttonData = [ { name: "View on GitHub", href: "https://github.com/ArtistGrid/Sheets", icon: Github, isExternal: true, }, { name: "Download CSV", href: "https://sheets.artistgrid.cx/artists.csv", icon: FileDown, downloadName: "artists.csv", }, { name: "View HTML", href: "https://sheets.artistgrid.cx/artists.html", icon: FileText, isExternal: true, }, { name: "Download XLSX", href: "https://sheets.artistgrid.cx/artists.xlsx", icon: FileSpreadsheet, downloadName: "ArtistGrid.xlsx", }, ]; export default function ArtistGridSheets() { return (
We pull from TrackerHub and parse it into a CSV file. Still a work in progress.