feat: update UI components for dark mode support and color scheme changes

- Refactored About, Contact, Gallery, Home, Services pages to enhance dark mode compatibility.
- Changed color schemes from orange to sky for various elements.
- Updated background colors and text colors to improve readability in dark mode.
- Added dark mode configuration to Tailwind CSS.
This commit is contained in:
Dan Dobos
2026-02-23 13:51:44 +01:00
parent 8954081593
commit e8d0f5b087
16 changed files with 471 additions and 397 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ export function LanguageSwitcher() {
type="button"
onClick={() => setLang(other as "en" | "nl")}
aria-label={t("header.language")}
className="flex items-center gap-1 bg-white px-2 py-1 text-sm hover:bg-gray-50"
className="flex items-center gap-1 px-2 py-1 text-sm hover:bg-gray-50"
>
{other === "en" ? <FlagGB /> : <FlagNL />}
</button>