Skip to content

Commit c08f104

Browse files
committed
fix(about): formatting
1 parent bf77722 commit c08f104

File tree

3 files changed

+18
-13
lines changed

3 files changed

+18
-13
lines changed

_pages/about.html

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,12 @@ <h2 class="section-title">By The Numbers</h2>
143143
<div class="stat-description">Making Python conferences globally accessible</div>
144144
</div>
145145
</div>
146+
</div>
147+
</div>
146148

147-
<!-- Testimonials on same slide -->
149+
<!-- Slide 6: Testimonials -->
150+
<div class="slide" id="slide-6">
151+
<div class="slide-content">
148152
<div class="testimonials-section">
149153
<h2 class="section-title">What Users Say</h2>
150154
<div class="testimonials">
@@ -165,8 +169,8 @@ <h2 class="section-title">What Users Say</h2>
165169
</div>
166170
</div>
167171

168-
<!-- Slide 6: Use Cases -->
169-
<div class="slide" id="slide-6">
172+
<!-- Slide 7: Use Cases -->
173+
<div class="slide" id="slide-7">
170174
<div class="slide-content">
171175
<h2 class="section-title">How People Use Pythondeadlin.es</h2>
172176
<div class="use-cases">
@@ -186,22 +190,22 @@ <h3>Conference Organizers</h3>
186190
</div>
187191
</div>
188192

189-
<!-- Slide 7: CTA -->
190-
<div class="slide" id="slide-7">
193+
<!-- Slide 8: CTA -->
194+
<div class="slide" id="slide-8">
191195
<div class="slide-content">
192196
<div class="cta-section">
193197
<h2>Start Tracking Conference Deadlines Today</h2>
194198
<div class="cta-content">
195-
<div class="qr-code">
196-
<img src="/static/img/domain.svg" alt="QR code for pythondeadlin.es" />
197-
</div>
198-
<div class="cta-text">
199-
<p>Join the Python community in staying on top of conference opportunities. Scan the QR code or visit pythondeadlin.es to get started.</p>
199+
<div class="cta-text">
200+
<p>Join the Python community in staying on top of conference opportunities. Scan the QR code or visit pythondeadlin.es to get started.</p>
200201
<div class="buttons">
201-
<a href="https://pythondeadlin.es" class="button button-primary">Visit Website</a>
202+
<a href="https://pythondeadlin.es" class="button button-primary">Visit Website</a>
202203
<a href="https://github.com/JesperDramsch/python-deadlines" class="button button-secondary">Contribute on GitHub</a>
203204
</div>
204205
</div>
206+
<div class="qr-code">
207+
<img src="/static/img/domain.svg" alt="QR code for pythondeadlin.es" />
208+
</div>
205209
</div>
206210
</div>
207211
</div>

static/css/about.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -477,7 +477,7 @@ footer a:hover {
477477
/* Presentation mode specific styles */
478478
body.presentation-mode {
479479
overflow: hidden;
480-
background-color: #000;
480+
background-color: #fff;
481481
}
482482
483483
body.presentation-mode .container {
@@ -508,6 +508,7 @@ body.presentation-mode .slide {
508508
pointer-events: none;
509509
transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
510510
transform: translateY(40px);
511+
overflow: hidden;
511512
}
512513
513514
body.presentation-mode .slide.active {

static/js/about.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Constants and variables
2-
const TOTAL_SLIDES = 7;
2+
const TOTAL_SLIDES = 8;
33
let currentSlide = 1;
44
let isPresentation = false;
55

0 commit comments

Comments
 (0)