2025-02-21

This commit is contained in:
gcch 2025-02-21 23:23:22 +01:00
commit 5d5918f0d7
69 changed files with 1481 additions and 305 deletions

7
src/libs/utils/dates.ts Normal file
View file

@ -0,0 +1,7 @@
export const getTodayDate = (): string =>
new Date(Date.now()).toLocaleDateString("fr-FR", {
day: "numeric",
month: "long",
weekday: "long",
year: "numeric",
});