Skip to content

Commit 6355fba

Browse files
committed
add calendar option
1 parent f7ced12 commit 6355fba

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/app/pages/home/home.page.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
<app-info name="DemoDay" description="Sunday June 8th"></app-info>
1616
<app-info name="GameDevs" description="Gleeglor, Digital Vibe"></app-info>
1717
</app-bar>
18+
<br>
19+
<p>Want to join? Add the meeting to your calendar and join the google meet.</p>
20+
<br>
21+
<app-button tabindex="0" (keydown.enter)="onCalendar()" (click)="onCalendar()">Join Demo</app-button>
1822
</app-section>
1923

2024
<app-section name="Contestant #1">

src/app/pages/home/home.page.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,10 @@ export class HomePage {
2222

2323
window.open(formUrl, '_blank');
2424
}
25+
26+
public onCalendar(): void {
27+
const calendarUrl = 'https://calendar.app.google/o7SsjTaowzL5AXqd6';
28+
29+
window.open(calendarUrl, '_blank');
30+
}
2531
}

0 commit comments

Comments
 (0)