Skip to content

Commit c4cb268

Browse files
authored
Merge pull request #246 from pyladies/fix_207
Make PyLadiesCon 2025 card more prominent
2 parents 15c7feb + aba507c commit c4cb268

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/pages/index.astro

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,24 @@ import Base from "@/layouts/Base.astro";
44
55
const cards = [
66
{
7-
"title": "2025 Conference Website",
7+
"title": "PyLadiesCon 2025",
88
"description": "Visit this year's website and learn more about the conference. More information soon!",
99
"button_url": "https://2025.conference.pyladies.com",
10-
"button_text": "Go to site",
11-
"classes": "max-w-full p-6 border bg-red-100 border-gray-200 rounded-lg shadow-sm",
10+
"button_text": "Tell me more!",
11+
"classes": "max-w-full p-6 border bg-red-100 border-gray-200 rounded-lg shadow-sm col-span-2 text-center",
1212
},
1313
{
14-
"title": "Blog",
14+
"title": "Stay up to date",
1515
"description": "Learn about the latest news about the conference to stay up to date with the deadlines, resources, and more!",
1616
"button_url": "/blog",
1717
"button_text": "Latests posts",
1818
"classes": "max-w-full p-6 border bg-yellow border-gray-200 rounded-lg shadow-sm",
1919
},
2020
{
21-
"title": "Documentation",
21+
"title": "Volunteer",
2222
"description": "Organizing a conference takes a lot of effort and coordination, you can read how PyLadiesCon is organized here.",
2323
"button_url": "/docs",
24-
"button_text": "Check the docs",
24+
"button_text": "Read more",
2525
"classes": "max-w-full p-6 border bg-yellow border-gray-200 rounded-lg shadow-sm",
2626
},
2727
]
@@ -44,9 +44,9 @@ const previousEvents = [
4444
---
4545

4646
<Base>
47-
<section class="section">
47+
<section class="section py-px pt-10">
4848
<div class="container">
49-
<h1 class="pb-10">Welcome to PyLadiesCon</h1>
49+
<h2 class="pb-10 text-center">Welcome to PyLadiesCon</h2>
5050
<div class="grid grid-cols-2 gap-3">
5151
{
5252
cards.map((card) => (
@@ -70,7 +70,7 @@ const previousEvents = [
7070
</div>
7171
</section>
7272

73-
<section class="section">
73+
<section class="section py-px pt-5">
7474
<div class="container">
7575
<h3 class="pb-10">Previous versions</h3>
7676
<div class="grid grid-cols-2 gap-3">

0 commit comments

Comments
 (0)