diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 5cb6e46..77090f0 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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 diff --git a/src/assets/coachs/abo.jpg b/src/assets/coachs/abo.jpg new file mode 100644 index 0000000..a6b470d Binary files /dev/null and b/src/assets/coachs/abo.jpg differ diff --git a/src/assets/coachs/ade.jpg b/src/assets/coachs/ade.jpg new file mode 100644 index 0000000..666e43a Binary files /dev/null and b/src/assets/coachs/ade.jpg differ diff --git a/src/assets/coachs/emmanuel.jpg b/src/assets/coachs/emmanuel.jpg deleted file mode 100644 index 876321f..0000000 Binary files a/src/assets/coachs/emmanuel.jpg and /dev/null differ diff --git a/src/assets/coachs/evi.jpg b/src/assets/coachs/evi.jpg new file mode 100644 index 0000000..7d48e09 Binary files /dev/null and b/src/assets/coachs/evi.jpg differ diff --git a/src/assets/coachs/flg.jpg b/src/assets/coachs/flg.jpg new file mode 100644 index 0000000..74b22b2 Binary files /dev/null and b/src/assets/coachs/flg.jpg differ diff --git a/src/assets/coachs/gan.jpg b/src/assets/coachs/gan.jpg new file mode 100644 index 0000000..23e5373 Binary files /dev/null and b/src/assets/coachs/gan.jpg differ diff --git a/src/assets/coachs/lma.jpg b/src/assets/coachs/lma.jpg new file mode 100644 index 0000000..4fcf6c3 Binary files /dev/null and b/src/assets/coachs/lma.jpg differ diff --git a/src/assets/coachs/mca.jpg b/src/assets/coachs/mca.jpg new file mode 100644 index 0000000..c8b3086 Binary files /dev/null and b/src/assets/coachs/mca.jpg differ diff --git a/src/assets/coachs/nla.jpg b/src/assets/coachs/nla.jpg new file mode 100644 index 0000000..6a99fda Binary files /dev/null and b/src/assets/coachs/nla.jpg differ diff --git a/src/assets/coachs/ras.jpg b/src/assets/coachs/ras.jpg new file mode 100644 index 0000000..d1c8e5d Binary files /dev/null and b/src/assets/coachs/ras.jpg differ diff --git a/src/assets/coachs/sle.jpg b/src/assets/coachs/sle.jpg new file mode 100644 index 0000000..13d8afa Binary files /dev/null and b/src/assets/coachs/sle.jpg differ diff --git a/src/assets/coachs/tsa.jpg b/src/assets/coachs/tsa.jpg new file mode 100644 index 0000000..77d59fe Binary files /dev/null and b/src/assets/coachs/tsa.jpg differ diff --git a/src/components/mktd/Hero.astro b/src/components/mktd/Hero.astro index 35b3e60..c441c36 100644 --- a/src/components/mktd/Hero.astro +++ b/src/components/mktd/Hero.astro @@ -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">; @@ -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(); --- diff --git a/src/components/mktd/Planning.astro b/src/components/mktd/Planning.astro index e25aeaa..5fbcc49 100644 --- a/src/components/mktd/Planning.astro +++ b/src/components/mktd/Planning.astro @@ -16,11 +16,13 @@ const endTime = mktd.data.planning.at(-1)!.end;

Planning

{startTime} - {endTime}