blob: f7b3f8c7e7951feb484facc74f52b5b8f2461452 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import img192w from '$images/scotsoun/sscd067-192w.jpg';
import type Scotsoun from '$types/Scotsoun';
const cd: Scotsoun = {
img: {
width192: img192w,
},
title: 'Burns Cottage Selection',
subtitle: 'from the Works of Robert Burns',
longName: 'Burns Cottage Selection – from the Works of Robert Burns',
author: 'Robert Burns',
cdCount: 1,
price: '11.00',
scotsounId: '067',
uploadDate: '2023-08-25',
trackList: ['Scots wha hae', 'Auld lang syne'],
};
export default cd;
|