- Move user settings form to dedicated /account/settings route - Update PageHeader icon from Settings to AccountCircle for clarity - Update debug log labels in auth config for better readability 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
14 lines
586 B
TypeScript
14 lines
586 B
TypeScript
import Image from "next/image";
|
|
import Link from "next/link";
|
|
import { SelectLanguage } from "./SelectLanguage";
|
|
import AccountCircle from "@mui/icons-material/AccountCircle";
|
|
|
|
export const PageHeader = () =>
|
|
<div className="navbar bg-base-100 mb-6">
|
|
<Link className="btn btn-ghost text-xl" href="/"><Image src="/icon3.png" alt="logo" width={48} height={48} /> Režije</Link>
|
|
<span className="grow"> </span>
|
|
<SelectLanguage />
|
|
<Link href="/account/" className="btn btn-ghost btn-circle">
|
|
<AccountCircle />
|
|
</Link>
|
|
</div> |