Refactor: rename account-form to settings-form and update translations

This commit is contained in:
Knee Cola
2025-11-18 12:33:24 +01:00
parent 6b5fb6c44d
commit b03f0574cd
5 changed files with 11 additions and 11 deletions

View File

@@ -1,7 +1,7 @@
import Image from "next/image";
import Link from "next/link";
import { SelectLanguage } from "./SelectLanguage";
import AccountCircleIcon from "@mui/icons-material/AccountCircle";
import Settings from "@mui/icons-material/Settings";
export const PageHeader = () =>
<div className="navbar bg-base-100 mb-6">
@@ -9,6 +9,6 @@ export const PageHeader = () =>
<span className="grow">&nbsp;</span>
<SelectLanguage />
<Link href="/account/" className="btn btn-ghost btn-circle">
<AccountCircleIcon className="w-6 h-6" />
<Settings className="w-6 h-6" />
</Link>
</div>