Skip to content

Commit a373764

Browse files
committed
hackers helping hackers
1 parent aa8ad57 commit a373764

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/pomodoro-timer.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ class PomodoroTimer extends DataroomElement {
4040
const container = document.createElement('div');
4141
container.className = 'pomodoro-container start-screen';
4242
this.appendChild(container);
43+
this.create("h2", {content: "Crash Space Professional Development Group"}, container);
44+
this.create("h3", {content: "Hackers Helping Hackers", style: "margin-bottom: 2em;"}, container);
45+
4346

4447
// Logo
4548
const logoContainer = document.createElement('div');
@@ -51,13 +54,17 @@ class PomodoroTimer extends DataroomElement {
5154
.then(svgContent => logoContainer.innerHTML = svgContent)
5255
.catch(() => logoContainer.innerHTML = '<div class="logo-placeholder">⚡</div>');
5356

57+
58+
5459
// Title
5560
const title = document.createElement('h1');
5661
title.className = 'main-title';
5762
title.textContent = 'CrashPomodoro';
5863
container.appendChild(title);
5964

6065

66+
67+
6168
// Start button
6269
const startButton = document.createElement('button');
6370
startButton.className = 'start-button';

0 commit comments

Comments
 (0)