Skip to content

Commit

Permalink
Add some more of this years profile
Browse files Browse the repository at this point in the history
  • Loading branch information
hanshenrik committed May 16, 2024
1 parent 82dd1c5 commit ab4ddb2
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 10 deletions.
Binary file added public/poster/2024.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/profil/bar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/profil/frimerke.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/profil/sykkel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions src/pages/billetter.astro
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,12 @@ import "../styles/tikkio-overrides.css";
</article>
</div>
<div
class="sticky bottom-4 md:bottom-8 w-full h-fit md:col-span-2 space-y-4"
class="sticky bottom-4 md:bottom-8 h-fit md:col-span-2 space-y-2 flex flex-col items-end"
>
<BuyTicketsButton class="w-fit mx-auto" />
<img src="/profil/frimerke.png" class="w-48 hidden md:block" />
<BuyTicketsButton class="w-fit mx-auto md:w-48 md:mx-0" />
</div>
<img src="/profil/frimerke.png" class="w-full max-w-sm block md:hidden mx-auto" />
</div>
</div>
</main>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const byOrder = (a, b) => {
class="flex flex-col gap-4 items-center w-full mt-8 md:mt-16 relative"
>
<img
src="/profil/logo/tertiary/black.svg"
src="/profil/sykkel.png"
class="max-w-[200px] md:max-w-[260px] w-full"
/>
<h1
Expand Down
11 changes: 9 additions & 2 deletions src/pages/praktisk.astro
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,15 @@ const accomodations = [
</p>
</p>
</div>
<BuyTicketsButton
class="sticky bottom-4 mx-auto translate-x-3 md:translate-x-0 w-fit md:w-fit md:sticky md:top-24 h-fit md:col-span-2 lg:col-span-1"
<div
class="sticky bottom-4 top-auto md:bottom-auto md:top-24 h-fit md:col-span-2 lg:col-span-1 space-y-2 flex flex-col items-end"
>
<BuyTicketsButton class="w-fit mx-auto md:w-48 md:mx-0" />
<img src="/profil/frimerke.png" class="w-48 hidden md:block" />
</div>
<img
src="/profil/frimerke.png"
class="w-full max-w-sm block md:hidden mx-auto"
/>
</div>
</div>
Expand Down
11 changes: 6 additions & 5 deletions src/pages/program.astro
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ const concertsGroupedByDay = Object.entries(
sortBy(
[
...artistsPages.filter(
({ frontmatter: { hideFromProgram } }) => !hideFromProgram,
({ frontmatter: { hideFromProgram } }) => !hideFromProgram
),
...tbaArtists.map((tbaArtist) => ({ frontmatter: tbaArtist })),
],
"frontmatter.concertStartAt",
"frontmatter.concertStartAt"
),
(artistPage) => formatHumanDate(artistPage.frontmatter.concertStartAt),
),
(artistPage) => formatHumanDate(artistPage.frontmatter.concertStartAt)
)
);
---

Expand Down Expand Up @@ -114,7 +114,7 @@ const concertsGroupedByDay = Object.entries(
<div class="">{formatTime(concertStartAt)}</div>
</div>
);
},
}
)
}
</div>
Expand All @@ -123,6 +123,7 @@ const concertsGroupedByDay = Object.entries(
})
}
<BuyTicketsButton class="w-fit mx-auto" />
<img src="/profil/bar.png" class="mx-auto" />
</div>
</main>
</Layout>

0 comments on commit ab4ddb2

Please sign in to comment.