blob: a54eb8bcda6672d62459fb30cf03707f794ca03a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
import img from '$images/scotsoun/sscdU1.jpg';
import type Scotsoun from '$types/Scotsoun';
const cd: Scotsoun = {
img,
title: 'An Ulster Triptych',
longName: 'An Ulster Triptych',
author: 'George T Watt',
cdCount: 1,
price: '6.00',
scotsounId: 'U1',
uploadDate: '2023-08-25',
description: {
sco: 'As featured on BBC Radio Ulster’s ‘A Kist o Words’.',
'en-GB': 'As featured on BBC Radio Ulster’s ‘A Kist o Words’.',
},
trackList: ['Winter 1778-79', 'Post script'],
};
export default cd;
|