blob: c427b0a13465201dfd24bfd81af12c429c91b810 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import img from '$images/scotsoun/sscd008.jpg';
import type Scotsoun from '$types/Scotsoun';
const cd: Scotsoun = {
img,
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;
|