Skip to content

Commit 1c31761

Browse files
committed
Setup initial page for pythonasia 2026
0 parents  commit 1c31761

File tree

16 files changed

+283
-0
lines changed

16 files changed

+283
-0
lines changed

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# GitHub Pages
2+
_site/
3+
.sass-cache/
4+
.jekyll-cache/
5+
.jekyll-metadata
6+
7+
# macOS
8+
.DS_Store
9+
10+
# Windows
11+
Thumbs.db
12+
13+
# Editor files
14+
.vscode/
15+
.idea/
16+
*.swp
17+
*.swo
18+
*~
19+
20+
# Logs
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*
24+
25+
# Temporary files
26+
*.tmp
27+
*.temp

index.html

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>PythonAsia 2026</title>
7+
<meta name="description" content="PythonAsia 2026">
8+
<script src="https://cdn.tailwindcss.com"></script>
9+
<style>
10+
body {
11+
background-color: #FFF9F2;
12+
color: #7C5E3B;
13+
font-size: 24px;
14+
}
15+
.hero-content {
16+
background-image: url('./static/hero-bg.png');
17+
}
18+
</style>
19+
<link rel="icon" href="favicon.ico" type="image/x-icon">
20+
</head>
21+
<body>
22+
<div class="min-h-screen" style="background-image: url('./static/background.png');">
23+
<main>
24+
<section id="hero" class="text-white text-center flex items-center pt-20">
25+
<div class="container mx-auto px-6 bg-cover w-[959.82px] hero-content">
26+
<div class="flex flex-col items-center space-y-8">
27+
<!-- kliN.png - smaller -->
28+
<img src="./static/kliN.png" alt="kliN" class="w-[189px] h-auto">
29+
30+
<!-- kalinga.png - smaller -->
31+
<img src="./static/kalinga.png" alt="Kalinga" class="w-[336.34px] h-auto">
32+
33+
<!-- pythonasia2026.png - larger -->
34+
<img src="./static/pythonasia2026.png" alt="PythonAsia 2026" class="w-[635px] h-auto">
35+
36+
<div class="text-center text-[#7C5E3B] z-30">
37+
Nurturing a community of care, compassion, and growth.<br/>
38+
The same heart of PyCon APAC, now as PythonAsia.
39+
</div>
40+
</div>
41+
</div>
42+
</section>
43+
44+
</main>
45+
46+
<footer class="relative w-full h-[950px] mt-[-20px] z-0">
47+
<!-- Left snake -->
48+
<img src="./static/pytonio.svg" alt="Left Snake"
49+
class="absolute left-0 bottom-80 w-[670px]">
50+
51+
<!-- Right snake -->
52+
<img src="./static/pytria.svg" alt="Right Snake"
53+
class="absolute right-0 bottom-80 w-[670px]">
54+
55+
<!-- Pot (centered) -->
56+
<img src="./static/pot.svg" alt="Pot"
57+
class="absolute bottom-80 left-1/2 ml-[-70px] -translate-x-1/2 w-[574.49px] z-10">
58+
59+
<img src="./static/base.svg" alt="Bottom Base"
60+
class="absolute bottom-0 left-0 right-0 w-full z-0">
61+
62+
<div class="absolute bottom-40 w-full text-center z-30">
63+
<h3 class="text-white font-bold">CO-ORGANIZED BY</h3>
64+
<img class="mx-auto h-[100px]" src="./static/coorganizers.png">
65+
</div>
66+
</footer>
67+
</body>
68+
</html>

static/background.png

498 KB
Loading

static/base.svg

Lines changed: 22 additions & 0 deletions
Loading

static/coorganizers.png

28.5 KB
Loading

static/footer-bg.png

658 KB
Loading

static/hero-bg.png

8.26 KB
Loading

static/kalinga.png

5.48 KB
Loading

static/kliN.png

2.6 KB
Loading

static/pot.png

64 KB
Loading

0 commit comments

Comments
 (0)