diff --git a/TODO.md b/TODO.md
index a329339..08345ec 100644
--- a/TODO.md
+++ b/TODO.md
@@ -2,9 +2,10 @@
- [x] chore: initial commit (+ mirror on GitHub)
- [x] Deploy first staging version (v1.0.0-staging.1)
-- [ ] Add docs to add locale/edit translations, create component, install a dependency in a package, create a new package, technology used, architecture, links where it's deployed, how to use/install for end users, how to update dependencies with `npx taze -l` etc.
- [ ] Implement Wikipedia Game Solver (`website`) with inputs, button to submit, and list all articles to go from one to another, or none if it is not possible
+- [ ] Implement toast notifications for errors, warnings, and success messages
- [ ] v1.0.0-staging.2
+- [ ] Add docs to add locale/edit translations, create component, install a dependency in a package, create a new package, technology used, architecture, links where it's deployed, how to use/install for end users, how to update dependencies with `npx taze -l` etc.
- [ ] Implement CLI (`cli`)
- [ ] v1.0.0-staging.3
- [ ] Implement REST API (`api`) with JSON responses ([AdonisJS](https://adonisjs.com/))
diff --git a/packages/config-tailwind/tailwind.config.js b/packages/config-tailwind/tailwind.config.js
index ac64023..24b3e4d 100644
--- a/packages/config-tailwind/tailwind.config.js
+++ b/packages/config-tailwind/tailwind.config.js
@@ -23,6 +23,7 @@ const config = {
yellow: "#fef08a",
transparent: "transparent",
inherit: "inherit",
+ current: "currentColor",
},
fontFamily: {
sans: ["'Montserrat'", ...fontFamily.sans],
diff --git a/packages/constants/version.ts b/packages/constants/version.ts
index 70923bc..000564d 100644
--- a/packages/constants/version.ts
+++ b/packages/constants/version.ts
@@ -5,5 +5,5 @@ export const VERSION =
? "0.0.0-development"
: packageJSON.version
-export const GIT_REPO_URL =
+export const GIT_REPO_LINK =
"https://git.theoludwig.fr/theoludwig/wikipedia-game-solver"
diff --git a/packages/i18n/src/translations/fr-FR.json b/packages/i18n/src/translations/fr-FR.json
index dc97706..b1712f7 100644
--- a/packages/i18n/src/translations/fr-FR.json
+++ b/packages/i18n/src/translations/fr-FR.json
@@ -18,6 +18,6 @@
},
"home": {
"title": "Wikipedia Game Solver",
- "description": "Le jeu Wikipédia implique des joueurs en compétition pour naviguer d'une page Wikipédia à une autre en utilisant uniquement des liens internes."
+ "description": "Le jeu Wikipédia implique des joueurs en compétition pour naviguer d'une page Wikipedia à une autre en utilisant uniquement des liens internes."
}
}
diff --git a/packages/ui/src/Footer/Footer.tsx b/packages/ui/src/Footer/Footer.tsx
index a4f78f5..f112efe 100644
--- a/packages/ui/src/Footer/Footer.tsx
+++ b/packages/ui/src/Footer/Footer.tsx
@@ -1,6 +1,6 @@
import { useTranslations } from "next-intl"
-import { GIT_REPO_URL } from "@repo/constants"
+import { GIT_REPO_LINK } from "@repo/constants"
import { Link } from "../design/Link/Link"
export interface FooterProps {
@@ -24,7 +24,7 @@ export const Footer: React.FC = (props) => {