From 54ddfdbd168f7538bcd2f47072e165395c3419ff Mon Sep 17 00:00:00 2001
From: "mr. m" <91018726+mr-cheffy@users.noreply.github.com>
Date: Mon, 11 Aug 2025 09:43:58 +0200
Subject: [PATCH] Revert "feat: add language selection dropdown (#749)" (#762)
This reverts commit eb996893220b853e5e205a2c07d5995b7d958143.
---
src/components/I18nSwitch.astro | 53 ---------------------------------
src/components/NavBar.astro | 4 ---
src/icons/LanguagesIcon.astro | 19 ------------
3 files changed, 76 deletions(-)
delete mode 100644 src/components/I18nSwitch.astro
delete mode 100644 src/icons/LanguagesIcon.astro
diff --git a/src/components/I18nSwitch.astro b/src/components/I18nSwitch.astro
deleted file mode 100644
index e564e34d..00000000
--- a/src/components/I18nSwitch.astro
+++ /dev/null
@@ -1,53 +0,0 @@
----
-import { Dropdown, DropdownItems } from 'astro-navbar'
-import { i18n } from '~/constants/i18n'
-import LanguagesIcon from '~/icons/LanguagesIcon.astro'
-import { getPath } from '~/utils/i18n'
-
-interface Props {
- label?: string
- className?: string
-}
-
-const { label = 'Toggle i18n', className = '' } = Astro.props
----
-
-