Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

@layer components {
.link-element {
@apply border-2 border-secondary text-white inline-block rounded-full text-center py-4 px-10 mt-4;
@apply border-2 border-secondary bg-primary inline-block rounded-full text-center py-4 px-10 mt-4;
@apply w-full text-xl;
@apply hover:bg-secondary hover:transition-colors hover:cursor-pointer;
@apply hover:text-white hover:bg-primary hover:cursor-pointer;
}
}
Binary file added src/images/logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 24 additions & 8 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
import { Image } from "@astrojs/image/components";
import "../base.css";
import logo from "../images/logo-python-italia.svg";
import logo from "../images/logo.jpg";
---

<html lang="en">
Expand All @@ -17,24 +17,22 @@ import logo from "../images/logo-python-italia.svg";
/>
<link rel="stylesheet" href="https://use.typekit.net/xhe6ncb.css" />
</head>
<body class="bg-primary min-h-screen">
<body class="min-h-screen">
<div class="container mx-auto">
<Image
src={logo}
width={300}
aspectRatio="1:1"
format="svg"
format="jpg"
class="mx-auto w-20 lg:w-52 mt-12"
alt=""
/>
<h1
class="text-secondary font-extrabold text-3xl lg:text-8xl text-center leading-none"
>
<h1 class="font-extrabold text-3xl lg:text-8xl text-center leading-none">
PyCatania
</h1>

<p class="text-center text-white mt-12 text-lg lg:text-xl">
La community di Python Italia a Catania 🌋
<p class="text-center mt-12 text-lg lg:text-xl">
La community di Python Italia a Catania, sotto il vulcano Etna! 🌋
</p>

<ul class="px-4 max-w-md lg:max-w-lg mx-auto py-12">
Expand All @@ -45,6 +43,24 @@ import logo from "../images/logo-python-italia.svg";
class="link-element">💬 Gruppo su Telegram</a
>
</li>
<li>
<a
href="https://www.facebook.com/python.catania"
target="_blank"
class="link-element"
>
🌴Pagina Facebook
</a>
</li>
<li>
<a
href="https://meetup.com/python-catania/"
target="_blank"
class="link-element"
>
👩‍👩‍👦‍👧 Meetup Group
</a>
</li>
<li>
<a
href="https://github.com/pythonitalia/catania.python.it"
Expand Down