28 lines
727 B
JavaScript
28 lines
727 B
JavaScript
const calendarSeed = [
|
|
{
|
|
title: 'Frühlingswanderung',
|
|
description: 'Treffpunkt Bahnhof Bludenz, gemeinsame Tour mit Einkehr.',
|
|
start: '2026-04-18T09:00',
|
|
end: '2026-04-18T16:00',
|
|
location: 'Bludenz Bahnhof',
|
|
color: '#1a73e8',
|
|
},
|
|
{
|
|
title: 'Hüttentour Planung',
|
|
description: 'Vorbesprechung für die Sommertour.',
|
|
start: '2026-04-22T19:00',
|
|
end: '2026-04-22T20:30',
|
|
location: 'Vereinsheim',
|
|
color: '#188038',
|
|
},
|
|
{
|
|
title: 'Seniorenrunde gemütlich',
|
|
description: 'Leichte Runde, danach Kaffee.',
|
|
start: '2026-04-28T14:00',
|
|
end: '2026-04-28T17:00',
|
|
location: 'Muttersberg Talstation',
|
|
color: '#9334e6',
|
|
},
|
|
];
|
|
|
|
module.exports = { calendarSeed };
|