Skip to content

Commit 59b77cb

Browse files
authored
Merge pull request #13 from palnabarun/tickets-page-and-logo-update
tickets page and logo update
2 parents 363eb45 + aef5489 commit 59b77cb

File tree

6 files changed

+245
-13
lines changed

6 files changed

+245
-13
lines changed

src/_includes/head.njk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<meta charset="utf-8">
33
<meta name="viewport" content="width=device-width, initial-scale=1">
44
<link rel="preload" href="{{ env.baseUrl }}css/page.css" as="style">
5-
<link rel="icon" type="image/x-icon" href="{{ env.baseUrl }}img/logo_without_text.svg">
5+
<link rel="icon" type="image/x-icon" href="{{ env.baseUrl }}img/logo.svg">
66
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
77
<!-- PRELOAD CDN SCRIPTS -->
88
<link rel="preconnect" href="https://unpkg.com/popper.js@1" as="script">
@@ -26,4 +26,4 @@
2626
{% if not isFront %}
2727
<!-- include Normalize for regular text pages -->
2828
<link rel="stylesheet" href="{{ env.baseUrl }}css/normalize.min.css">
29-
{% endif %}
29+
{% endif %}

src/_includes/navbar.njk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<a class="text-gray-800 font-bold hover:text-purple-600 text-lg text-center no-underline py-2 mx-2" href="{{ env.baseUrl }}venue">Venue</a>
1616
<a class="text-gray-800 font-bold hover:text-purple-600 text-lg text-center no-underline py-2 mx-2" href="{{ env.baseUrl }}coc">Code Of Conduct</a>
1717
<a class="text-gray-800 font-bold hover:text-purple-600 text-lg text-center no-underline py-2 mx-2" href="https://in.pycon.org/blog/">Blog</a>
18+
<a class="text-gray-800 font-bold hover:text-purple-600 text-lg text-center no-underline py-2 mx-2" href="{{ env.baseUrl }}tickets">Buy Tickets 🎟️</a>
1819
</div>
1920

2021
<div

src/_includes/section.header.njk

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div>
22
<div class="self-center items-center md:w-full">
33
<div class="w-4/5 text-center mx-auto">
4-
<img class="w-3/5 mt-4 drop-shadow-md rounded-md mx-auto" src="{{ env.baseUrl }}img/pycon_2025.svg"/>
4+
<img class="w-full h-auto max-h-[25vh] sm:max-h-[25vh] md:max-h-[32vh] rounded-lg" src="{{ env.baseUrl }}img/logo.svg"/>
55
<div class="justify-center items-center text-2xl md:text-3xl my-16">
66
PyCon India is the premier conference for Python enthusiasts and professionals, offering an unparalleled opportunity to
77
dive deep into the world of Python and explore its limitless potential. Stay tuned for updates!
@@ -25,20 +25,28 @@
2525
</div>
2626
</div>
2727
</div>
28-
<div class="flex justify-center items-center space-x-4">
28+
<div class="flex flex-wrap justify-center items-center gap-4">
29+
<!-- Buy Tickets Link -->
30+
<a href="{{ env.baseUrl }}tickets" class="inline-block">
31+
<button class="bg-orange-500 text-white font-semibold py-3 px-6 rounded transition-transform transform hover:scale-105
32+
active:scale-95 focus:outline-none focus:ring-2 focus:ring-green-500">
33+
Buy Tickets
34+
</button>
35+
</a>
2936
<!-- Submit CFP Button Link-->
30-
<a href="{{ env.baseUrl }}cfp" class="inline-block"> <button class="bg-orange-500 text-white font-semibold py-3 px-6 rounded transition-transform transform hover:scale-105
37+
<a href="{{ env.baseUrl }}cfp" class="inline-block">
38+
<button class="bg-orange-500 text-white font-semibold py-3 px-6 rounded transition-transform transform hover:scale-105
3139
active:scale-95 focus:outline-none focus:ring-2 focus:ring-green-500">
3240
Call for Proposals
33-
</button> </a>
41+
</button>
42+
</a>
3443
<!-- Volunteer Button Link -->
35-
<a
36-
href="https://docs.google.com/forms/d/e/1FAIpQLSdX2LEom11BbWDiLUiQp1rmeNX9l7J8bfszGidsRDoExy0D5A/viewform"
37-
class="inline-block"> <button class="bg-orange-500 text-white font-semibold py-3 px-6 rounded transition-transform transform hover:scale-105
44+
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdX2LEom11BbWDiLUiQp1rmeNX9l7J8bfszGidsRDoExy0D5A/viewform" class="inline-block">
45+
<button class="bg-orange-500 text-white font-semibold py-3 px-6 rounded transition-transform transform hover:scale-105
3846
active:scale-95 focus:outline-none focus:ring-2 focus:ring-green-500">
39-
Volunteer
40-
</button>
41-
</a>
47+
Volunteer
48+
</button>
49+
</a>
4250
<!-- Sponsor Button Link <a href="/sponsor" class="inline-block"> <button class="bg-orange-500 text-white py-2 px-4
4351
rounded transition-transform transform hover:scale-105 active:scale-95 focus:outline-none focus:ring-2
4452
focus:ring-yellow-500">
@@ -47,4 +55,4 @@
4755
</div>
4856
<div class="flex flex-col justify-center"></div>
4957
<div class="flex flex-col justify-center"></div>
50-
</div>
58+
</div>

src/static/img/logo.png

113 KB
Loading

src/static/img/logo.svg

Lines changed: 61 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)