blob: dc9ffccfb2fb85527a93f32203d05d12074ba4bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import img from '$images/scotsoun/sscd046.jpg';
import type Scotsoun from '$types/Scotsoun';
const cd: Scotsoun = {
img,
title: 'Piper in the Nave',
subtitle: 'of Dunfermline Abbey, vol 2',
longName: 'Piper in the Nave of Dunfermline Abbey, vol 2',
author: 'Pipe Major Donald MacLeod MBE',
cdCount: 1,
price: '11.00',
scotsounId: '046',
uploadDate: '2023-08-25',
trackList: ['Introduction to A Glase', 'A Glase'],
};
export default cd;
|