Skip to content

Commit

Permalink
pnpm: pnpm run lint
Browse files Browse the repository at this point in the history
GitHub Actions was complaining about a botched `pnpm run lint` job.

This should do.
  • Loading branch information
bjgavilanes committed Oct 13, 2024
1 parent 21510b1 commit 7b41e31
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 57 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/Event.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
{place}
</span>
</div>
<a href="{route}">
<a href={route}>
<button class="rounded-full bg-lime-500 px-2 font-fira text-sm font-semibold text-black">
Ver más
</button>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/Tag.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</script>

<span
class="rounded-full border border-lime-500 bg-neutral-800 px-6 font-fira text-xs font-bold text-white w-fit"
class="w-fit rounded-full border border-lime-500 bg-neutral-800 px-6 font-fira text-xs font-bold text-white"
>
{category}
</span>
40 changes: 20 additions & 20 deletions src/lib/data/events.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"events": [
{
"name": "HacktoberfestGYE 2024",
"description": "Collaborate on a variety of open-source projects, enhancing your skills and contributing to the global developer community.",
"date": "18/10/2024",
"time": "9 AM - 5 PM",
"place": "Universidad Católica Santiago de Guayaquil",
"category": "Hackathon",
"route": "/events/hacktoberfest"
},
{
"name": "CLI Week 2024",
"description": "A week to celebrate the versatility and develop CLI tools with friends. We'll also have workshops and talks!",
"date": "11/11/2024 - 15/11/2024",
"time": "All day",
"place": "Online",
"category": "Hackathon/Workshops",
"route": "/events/cliweek"
}
]
"events": [
{
"name": "HacktoberfestGYE 2024",
"description": "Collaborate on a variety of open-source projects, enhancing your skills and contributing to the global developer community.",
"date": "18/10/2024",
"time": "9 AM - 5 PM",
"place": "Universidad Católica Santiago de Guayaquil",
"category": "Hackathon",
"route": "/events/hacktoberfest"
},
{
"name": "CLI Week 2024",
"description": "A week to celebrate the versatility and develop CLI tools with friends. We'll also have workshops and talks!",
"date": "11/11/2024 - 15/11/2024",
"time": "All day",
"place": "Online",
"category": "Hackathon/Workshops",
"route": "/events/cliweek"
}
]
}
39 changes: 18 additions & 21 deletions src/routes/events/cliweek/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,22 @@
<Tag category="11-11-2024 | 15-11-2024" />

<p id="description">
Welcome to the CLI Week! This is a week dedicated to the celebration of command line tools
in which we'll have talks and workshops and participants will compete to develop their own
CLI tool.
Welcome to the CLI Week! This is a week dedicated to the celebration of command line tools in
which we'll have talks and workshops and participants will compete to develop their own CLI
tool.
</p>

<h4 class="text-xl text-lime-600">How to participate?</h4>

<p id="how-to-participate">
You can participate either as a speaker or by building a CLI tool. Check out the links below for the corresponding
registration link.
You can participate either as a speaker or by building a CLI tool. Check out the links below for
the corresponding registration link.
</p>

<p id="speakers">
For speakers, you'll find a link to a registration form below where you can specify the topic you'd like to
talk about and you tentative dates. We'll then get in touch with you to coordinate your awesome
talk :).
For speakers, you'll find a link to a registration form below where you can specify the topic
you'd like to talk about and you tentative dates. We'll then get in touch with you to coordinate
your awesome talk :).
</p>

<p id="coders">
Expand All @@ -40,17 +40,17 @@
</a>.
</p>

<div id="registration" class="flex flex-col border rounded-md p-2 shadow-lg">
<h3 class="text-center text-2xl mb-4">Register</h3>
<div class="flex w-full gap-4 justify-center">
<div id="registration" class="flex flex-col rounded-md border p-2 shadow-lg">
<h3 class="mb-4 text-center text-2xl">Register</h3>
<div class="flex w-full justify-center gap-4">
<div id="registration-speakers" class="flex-1">
<a target="_blank" href="https://forms.gle/L3Ri4wdg3ACDEY1XA">
<button class="rounded-md p-2 w-full bg-lime-600 hover:bg-lime-500">Speakers</button>
<button class="w-full rounded-md bg-lime-600 p-2 hover:bg-lime-500">Speakers</button>
</a>
</div>
<div id="registration-participants" class="flex-1">
<a target="_blank" href="https://forms.gle/FqwFyMFcmc6NCNWv9">
<button class="rounded-md p-2 w-full bg-lime-600 hover:bg-lime-500">Coders</button>
<button class="w-full rounded-md bg-lime-600 p-2 hover:bg-lime-500">Coders</button>
</a>
</div>
</div>
Expand All @@ -59,20 +59,17 @@
<div id="sponsorship">
<h4 class="text-xl text-lime-600">Sponsorship</h4>
<p>
We are a non-profit organization and have limited resources, so if you'd like to help make this
event even cooler for our participants and act as a sponsor, please contact us at our email
We are a non-profit organization and have limited resources, so if you'd like to help make
this event even cooler for our participants and act as a sponsor, please contact us at our
email
<a href="mailto:[email protected]">[email protected]</a>.
</p>
</div>

<div id="speakers">
<h4 class="text-xl text-lime-600">Speakers</h4>
<p>
There are no speakers yet! Why don't you become the first one?
</p>
<p>There are no speakers yet! Why don't you become the first one?</p>
</div>

<div>
See you there!
</div>
<div>See you there!</div>
</div>
27 changes: 13 additions & 14 deletions src/routes/events/hacktoberfest/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,19 @@
<Tag category="11-11-2024 | 15-11-2024" />

<p id="description">
Hacktoberfest is a month-long celebration of open-source
software, held annually in October. The event encourages
participants to contribute to open-source projects,
rewarding them with prizes and recognition for their
contributions.
Hacktoberfest is a month-long celebration of open-source software, held annually in October. The
event encourages participants to contribute to open-source projects, rewarding them with prizes
and recognition for their contributions.
</p>

<h4 class="text-xl text-lime-600">How to participate?</h4>

<p id="how-to-participate">
To participate, you simply need to register on the <a
href="http://hacktoberfestgye.org/">Hacktoberfest</a> website and
start making contributions to open-source projects on
platforms like <a href="https://github.com/Hacktoberfest-GYE">GitHub</a>.
To participate, you simply need to register on the <a href="http://hacktoberfestgye.org/"
>Hacktoberfest</a
>
website and start making contributions to open-source projects on platforms like
<a href="https://github.com/Hacktoberfest-GYE">GitHub</a>.
</p>

<p>You can contribute in many ways, such as:</p>
Expand All @@ -46,17 +45,17 @@
<li>Resolving issues reported by other users</li>
</ul>

<div id="registration" class="flex flex-col border rounded-md p-2 shadow-lg">
<h3 class="text-center text-2xl mb-4">Register</h3>
<div class="flex w-full gap-4 justify-center">
<div id="registration" class="flex flex-col rounded-md border p-2 shadow-lg">
<h3 class="mb-4 text-center text-2xl">Register</h3>
<div class="flex w-full justify-center gap-4">
<div id="registration-speakers" class="flex-1">
<a target="_blank" href="https://forms.gle/2mH4fi7n9ukJPXPr9">
<button class="rounded-md p-2 w-full bg-lime-600 hover:bg-lime-500">Speakers</button>
<button class="w-full rounded-md bg-lime-600 p-2 hover:bg-lime-500">Speakers</button>
</a>
</div>
<div id="registration-participants" class="flex-1">
<a target="_blank" href="https://forms.gle/Qyeoc46c8NSkqeNNA">
<button class="rounded-md p-2 w-full bg-lime-600 hover:bg-lime-500">Participants</button>
<button class="w-full rounded-md bg-lime-600 p-2 hover:bg-lime-500">Participants</button>
</a>
</div>
</div>
Expand Down

0 comments on commit 7b41e31

Please sign in to comment.