Spaces:
Running
Running
| import { DATASET } from '$lib/types'; | |
| export const site = { | |
| name: 'OpenCS2 Dataset - Viewer', | |
| description: 'Browse the OpenCS2 dataset by match, map, round, and synchronized player POV.', | |
| author: 'Julien Blanchon', | |
| datasetId: DATASET, | |
| datasetUrl: `https://huggingface.co/datasets/${DATASET}`, | |
| spaceUrl: 'https://huggingface.co/spaces/blanchon/opencs2-dataset-viewer', | |
| githubUrl: 'https://github.com/julien-blanchon/opencs2-dataset', | |
| xUrl: 'https://x.com/JulienBlanchon', | |
| websiteUrl: 'https://guybrush.ink/' | |
| } as const; | |
| export const siteLinks = [ | |
| { label: 'Dataset', href: site.datasetUrl }, | |
| { label: 'Space', href: site.spaceUrl }, | |
| { label: 'GitHub', href: site.githubUrl }, | |
| { label: 'X', href: site.xUrl }, | |
| { label: 'Website', href: site.websiteUrl } | |
| ] as const; | |