feat(Navbar): hide navigation on /blog routes

Hide navbar by default on /blog and its subpaths

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Haitao Pan 2025-11-12 10:39:09 +08:00
parent 5d1f442584
commit 31242cfa91

View File

@ -28,7 +28,7 @@ type NavSubItem = {
export default function Navbar() {
const pathname = usePathname()
const isHiddenRoute = pathname
? ['/login', '/register', '/xstream', '/xcloudflow', '/xscopehub'].some((prefix) =>
? ['/login', '/register', '/xstream', '/xcloudflow', '/xscopehub', '/blog'].some((prefix) =>
pathname.startsWith(prefix),
)
: false