73 lines
No EOL
2.1 KiB
TypeScript
73 lines
No EOL
2.1 KiB
TypeScript
export interface Event {
|
|
date: string;
|
|
title: string;
|
|
description: string;
|
|
startTime: string;
|
|
endTime: string;
|
|
pointOfContact: string;
|
|
email: string;
|
|
address: string;
|
|
}
|
|
|
|
export const events: Event[] = [
|
|
{
|
|
date: '2024-11-01',
|
|
title: 'ASL Night Out!',
|
|
description: 'Cornhole Tournament - will have 3 rows of cornholes and will do elimination for winner',
|
|
startTime: '18:00',
|
|
endTime: '20:00',
|
|
pointOfContact: 'Tessa Williams',
|
|
email: 'tessa.williams@deafmissoula.org',
|
|
address: 'To be announced'
|
|
},
|
|
{
|
|
date: '2024-11-02',
|
|
title: 'Missoula Concealed Weapons Class',
|
|
description: 'Concealed weapons course at Cabela\'s',
|
|
startTime: '10:00',
|
|
endTime: '14:00',
|
|
pointOfContact: 'Kevin Cooley',
|
|
email: 'kevin.cooley@deafmissoula.org',
|
|
address: '3650 Brooks Street, Missoula, MT 59801'
|
|
},
|
|
{
|
|
date: '2024-11-28',
|
|
title: 'Thanksgiving Volunteer',
|
|
description: 'Volunteer at Missoula Food Bank and Community Center with us',
|
|
startTime: '10:00',
|
|
endTime: '13:00',
|
|
pointOfContact: 'Aubz M',
|
|
email: 'aubz.m@deafmissoula.org',
|
|
address: '1720 Wyoming St, Missoula, MT 59801'
|
|
},
|
|
{
|
|
date: '2024-12-06',
|
|
title: 'ASL Black Tie and Gown',
|
|
description: 'Time to dress up in your finest clothes for a night of dancing and rocking the fabulous looks',
|
|
startTime: '19:00',
|
|
endTime: '23:00',
|
|
pointOfContact: 'Rita Brandborg',
|
|
email: 'rita.brandborg@deafmissoula.org',
|
|
address: '101 Central Avenue, Whitefish, MT 59937'
|
|
},
|
|
{
|
|
date: '2024-12-24',
|
|
title: 'Christmas Cheer Volunteer',
|
|
description: 'Volunteer at Missoula Food Bank and Community Center',
|
|
startTime: '10:00',
|
|
endTime: '12:00',
|
|
pointOfContact: 'Tessa Williams',
|
|
email: 'tessa.williams@deafmissoula.org',
|
|
address: '1720 Wyoming St, Missoula, MT 59801'
|
|
},
|
|
{
|
|
date: '2025-01-11',
|
|
title: 'MCDi Members Meeting',
|
|
description: 'Black Roasting Coffee Company',
|
|
startTime: '10:00',
|
|
endTime: '11:00',
|
|
pointOfContact: 'Eliza Kragh',
|
|
email: 'eliza.kragh@deafmissoula.org',
|
|
address: '525 E Spruce St, Missoula, MT 59801'
|
|
}
|
|
]; |