Skip to content

Commit

Permalink
Add all coarches images & minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Wykks committed Nov 6, 2024
1 parent b5385c6 commit ae0e7be
Show file tree
Hide file tree
Showing 15 changed files with 8 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ permissions:
jobs:
build:
runs-on: ubuntu-latest
env:
TZ: Europe/Paris
steps:
- name: Checkout your repository using git
uses: actions/checkout@v4
Expand Down
Binary file added src/assets/coachs/abo.jpg
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 src/assets/coachs/ade.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed src/assets/coachs/emmanuel.jpg
Binary file not shown.
Binary file added src/assets/coachs/evi.jpg
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 src/assets/coachs/flg.jpg
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 src/assets/coachs/gan.jpg
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 src/assets/coachs/lma.jpg
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 src/assets/coachs/mca.jpg
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 src/assets/coachs/nla.jpg
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 src/assets/coachs/ras.jpg
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 src/assets/coachs/sle.jpg
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 src/assets/coachs/tsa.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/components/mktd/Hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { Image } from "astro:assets";
import { type CollectionEntry } from "astro:content";
import Logo from "../logo.svg";
import { ButtonWithMovingBorderEffect } from "./ButtonWithMovingBorderEffect";
import { formatISO } from "date-fns";
type Props = CollectionEntry<"mktds">;
Expand All @@ -17,7 +18,7 @@ const formattedDate = mktd.data.date.toLocaleDateString("fr-FR", {
month: "long",
day: "numeric",
});
const date = mktd.data.date.toISOString().split("T")[0];
const date = formatISO(mktd.data.date, { representation: "date" });
const mktdIsUpcoming = mktd.data.date > new Date();
---

Expand Down
10 changes: 6 additions & 4 deletions src/components/mktd/Planning.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ const endTime = mktd.data.planning.at(-1)!.end;
<h2 class="mb-4 text-center text-4xl font-bold">Planning</h2>
<p class="text-center font-bold">
<time
datetime={parse(startTime, "HH'h'mm", mktd.data.date).toISOString()}
>{startTime}</time
datetime={parse(startTime, "HH'h'mm", mktd.data.date)
.toISOString()
.slice(0, -1)}>{startTime}</time
> - <time
datetime={parse(endTime, "HH'h'mm", mktd.data.date).toISOString()}
>{endTime}</time
datetime={parse(endTime, "HH'h'mm", mktd.data.date)
.toISOString()
.slice(0, -1)}>{endTime}</time
>
</p>
<ul
Expand Down

0 comments on commit ae0e7be

Please sign in to comment.