links.ts
1import type { ILink } from '@/interfaces/IConfig'
2
3export const links: ILink[] = [
4 {
5 name: 'Snap',
6 url: 'https://snap.choco.rip',
7 iconName: 'GitBranch',
8 color: '#0175cc',
9 },
10 {
11 name: 'Donate',
12 url: 'https://donate.stripe.com/4gwdT31PC7bz03m9AD',
13 iconName: 'Heart',
14 color: '#FF0000',
15 },
16]
17