26 lines
485 B
TypeScript
26 lines
485 B
TypeScript
|
import { ISport } from '@/types/workouts'
|
||
|
|
||
|
export const sports: ISport[] = [
|
||
|
{
|
||
|
has_workouts: false,
|
||
|
id: 1,
|
||
|
img: '/img/sports/cycling-sport.png',
|
||
|
is_active: true,
|
||
|
label: 'Cycling (Sport)',
|
||
|
},
|
||
|
{
|
||
|
has_workouts: false,
|
||
|
id: 2,
|
||
|
img: '/img/sports/cycling-transport.png',
|
||
|
is_active: false,
|
||
|
label: 'Cycling (Transport)',
|
||
|
},
|
||
|
{
|
||
|
has_workouts: true,
|
||
|
id: 3,
|
||
|
img: '/img/sports/hiking.png',
|
||
|
is_active: true,
|
||
|
label: 'Hiking',
|
||
|
},
|
||
|
]
|