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:
parent
5d1f442584
commit
31242cfa91
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user