feat: add german in dropdown

This commit is contained in:
amhsirak
2024-12-21 18:42:11 +05:30
parent af57c196fd
commit 5c4498ce51

View File

@@ -354,6 +354,14 @@ export const NavBar: React.FC<NavBarProps> = ({
>
</MenuItem>
<MenuItem
onClick={() => {
changeLanguage("de");
handleMenuClose();
}}
>
Deutsch
</MenuItem>
</Menu>
</div>
) : (
@@ -414,6 +422,14 @@ export const NavBar: React.FC<NavBarProps> = ({
>
</MenuItem>
<MenuItem
onClick={() => {
changeLanguage("de");
handleMenuClose();
}}
>
Deutsch
</MenuItem>
</Menu></>
)}
</NavBarWrapper>