Skip to content

Commit

Permalink
move dates
Browse files Browse the repository at this point in the history
  • Loading branch information
jdonszelmann committed Jul 11, 2024
1 parent d6898a7 commit bab6de2
Showing 1 changed file with 61 additions and 57 deletions.
118 changes: 61 additions & 57 deletions src/layouts/HomeLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,40 +8,42 @@ import "../styles/index.scss";

<!doctype html>
<html lang="en">
<Head title="Rust Week 2025" />
<body>
<Header />
<div class="space-y-24">
<section class="hero">
<img src="/images/logo.svg" alt="Logo Rust Week 2025" />
<p>May 12 - 16, 2025<br /> The Netherlands</p>
<div class="button-group">
<a href="#updates" class="button button-primary">Get updates</a>
</div>
<a class="down-arrow" href="#explainer"></a>
</section>
<section class="container md:grid md:cols-12">
<div
class="text-lg md:col-start-3 md:col-end-11 xl:col-start-4 xl:col-end-10"
>
<slot name="explainer" />
</div>
</section>
<section class="container">
<div class="location">
<div class="image"></div>
<div class="image"></div>
<div class="image">
<div class="ferris"></div>
<div class="ferris-arms"></div>
</div>
<div class="ferris">
<img src="/images/ferris.png" alt="" />
</div>
</div>
</section>
<Head title="Rust Week 2025" />
<body>
<Header />
<div class="space-y-24">
<section class="hero">
<img src="/images/logo.svg" alt="Logo Rust Week 2025" />
<p>May 13 - 17, 2025<br /> The Netherlands</p>
<div class="button-group">
<a href="#updates" class="button button-primary"
>Get updates</a
>
</div>
<a class="down-arrow" href="#explainer"></a>
</section>
<section class="container md:grid md:cols-12">
<div
class="text-lg md:col-start-3 md:col-end-11 xl:col-start-4 xl:col-end-10"
>
<slot name="explainer" />
</div>
</section>
<section class="container">
<div class="location">
<div class="image"></div>
<div class="image"></div>
<div class="image">
<div class="ferris"></div>
<div class="ferris-arms"></div>
</div>
<div class="ferris">
<img src="/images/ferris.png" alt="" />
</div>
</div>
</section>

<!-- <section class="container space-y-6">
<!-- <section class="container space-y-6">
<h3 class="text-2xl text-center">Speaker highlights</h3>
<div class="grid md:cols-2 xl:cols-4" id="speakers">
<slot name="speakers" />
Expand All @@ -54,19 +56,21 @@ import "../styles/index.scss";
</div>
</section> -->

<section class="container space-y-6">
<h3 class="text-2xl text-center">Last Year's Speakers</h3>
<div class="grid md:cols-2 xl:cols-4" id="speakers">
<slot name="speakers" />
</div>
</section>
<div class="button-group">
<a href="https://2024.rustnl.org/speakers" class="button button-primary"
>All of last year's speakers!</a
>
</div>
<section class="container space-y-6">
<h3 class="text-2xl text-center">Last Year's Speakers</h3>
<div class="grid md:cols-2 xl:cols-4" id="speakers">
<slot name="speakers" />
</div>
</section>
<div class="button-group">
<a
href="https://2024.rustnl.org/speakers"
class="button button-primary"
>All of last year's speakers!</a
>
</div>

<!-- <section class="container space-y-6">
<!-- <section class="container space-y-6">
<h3 class="text-2xl text-center">Workshops by</h3>
<div class="grid md:cols-2 xl:cols-4" id="workshops">
<slot name="workshops" />
Expand All @@ -80,17 +84,17 @@ import "../styles/index.scss";
</div>
</section> -->

<section class="container sponsors" id="sponsors">
<slot name="sponsors" />
</section>
<section class="container md:grid md:cols-12">
<div
class="text-lg md:col-start-3 md:col-end-11 xl:col-start-4 xl:col-end-10"
>
<slot name="about" id="about" />
<section class="container sponsors" id="sponsors">
<slot name="sponsors" />
</section>
<section class="container md:grid md:cols-12">
<div
class="text-lg md:col-start-3 md:col-end-11 xl:col-start-4 xl:col-end-10"
>
<slot name="about" id="about" />
</div>
</section>
</div>
</section>
</div>
<Footer />
</body>
<Footer />
</body>
</html>

0 comments on commit bab6de2

Please sign in to comment.