Mobile view dark mode toggle

This commit is contained in:
Stephanos A
2026-07-10 15:00:57 +03:00
parent 84e6a3139c
commit 3d3b0dc4c5

View File

@@ -1,5 +1,6 @@
import Link from 'next/link';
import Image from 'next/image';
import ThemeToggle from './ThemeToggle';
// AppSidebar (which carries the logo) is `hidden lg:flex` — invisible on
// mobile, so mobile pages had no branding/way back to home at all. This is
@@ -19,6 +20,9 @@ export default function MobileTopBar() {
priority
/>
</Link>
<div className="ml-auto">
<ThemeToggle />
</div>
</div>
);
}