Skip to content

Commit d98d72d

Browse files
committed
refactor: comment out ticket and sponsor actions
Comment out ticket and sponsor action links in footer and when-where sections for future use. Update CSS text size variables to use px units for consistency.
1 parent d7b01d4 commit d98d72d

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

app/home/templates/home/sections/footer.html

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,20 @@
33
<footer class="flex flex-col items-center bg-[#F4E6D4] py-12">
44
<!-- PythonAsia 2026 Branding -->
55
<img src="{% static 'img/vectors/python-asia-branding.png' %}" class="mt-10" alt="Footer">
6-
6+
77
<!-- Action Links -->
8+
{% comment %}
89
<div class="flex gap-8 mt-10 mb-6">
910
<a href="#" class="text-[#FFA218] text-xl font-bold hover:underline font-bantayog">GET TICKETS</a>
1011
<a href="#" class="text-[#F26D1D] text-xl font-bold hover:underline font-bantayog">BECOME A SPONSOR</a>
1112
</div>
12-
13+
{% endcomment %}
14+
1315
<!-- Contact Message -->
1416
<p class="text-[#7C5E3B] text-sm mb-4 font-nunito">
1517
Message us at <a href="mailto:pycon@python.ph" class="underline">pycon@python.ph</a> for questions and inquiries
1618
</p>
17-
19+
1820
<!-- Social Media Icons -->
1921
<div class="flex gap-4 mb-4">
2022
<a href="#" class="hover:opacity-70 transition-opacity" aria-label="Facebook">

app/home/templates/home/sections/when-where-section.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@ <h2 class="font-bantayog text-[28px] text-[#F26D1D] leading-[130%]">WHEN? WHERE?
99
<p class="font-td_pinoy text-[35px] text[#84400F] leading-[130%] tracking-[2%]">De La Salle University (DLSU),</p>
1010
<p class="font-td_pinoy text-[35px] text[#84400F] leading-[130%] tracking-[2%]">Malate, Manila</p>
1111
</div>
12+
{% comment %}
1213
<div class="flex flex-col justify-center gap-3.5">
1314
<button class="rounded-lg bg-[#F26D1D] py-[27px] px-[90px] text-white text-[22px] leading-[120%] font-bantayog">
1415
GET TICKETS
1516
</button>
1617
<a href="#"
1718
class="underline text-[#84400F] text-center text-base font-bantayog">Apply for Student Discount</a>
1819
</div>
20+
{% endcomment %}
1921
</div>
2022
<div class="relative w-full pb-[56.25%] overflow-hidden rounded-[24px]">
2123
<iframe class="absolute top-0 left-0 w-full h-full border-0"

static/css/app.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
--container-5xl: 64rem;
1616
--container-6xl: 72rem;
1717
--container-7xl: 80rem;
18-
--text-sm: 0.875rem;
18+
--text-sm: 16px;
1919
--text-sm--line-height: calc(1.25 / 0.875);
20-
--text-base: 1rem;
20+
--text-base: 18px;
2121
--text-base--line-height: calc(1.5 / 1);
2222
--text-lg: 1.125rem;
2323
--text-lg--line-height: calc(1.75 / 1.125);

0 commit comments

Comments
 (0)