File size: 780 Bytes
95e3d2a
 
 
f2a1626
 
95e3d2a
 
 
c470fa4
 
95e3d2a
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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;