1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
import img192w from '$images/scotsoun/sscd024-192w.jpg';
import type Scotsoun from '$types/Scotsoun';
const cd: Scotsoun = {
img: {
width192: img192w,
},
title: 'Under the Eildon Tree',
longName: 'Under the Eildon Tree',
author: 'Sydney Goodsir Smith',
cdCount: 2,
price: '18.00',
scotsounId: '024',
uploadDate: '2023-08-25',
trackList: [
'Nicht lowers fast',
'Tristram',
'I heard a lassie',
'Thus spak Antony',
'The time has come',
'Fareweill',
],
};
export default cd;
|