blob: e1c86e2ba541436e0e865911907dc1a6170b9d22 (
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/sscd008-192w.jpg';
import type Scotsoun from '$types/Scotsoun';
const cd: Scotsoun = {
img: {
width192: img192w,
},
title: 'Poems Chiefly in the Scottish Dialect',
subtitle: 'Read by Members of the Irvine Burns Club',
longName: 'Poems Chiefly in the Scottish Dialect',
author: 'Robert Burns',
cdCount: 2,
price: '18.00',
scotsounId: '008',
uploadDate: '2023-08-25',
trackList: ['To a Louse', 'Epistle to a Young Friend'],
};
export default cd;
|