Files
IKnowThem/MovieActorLookup/Components/Layout/NavMenu.razor
T
2025-08-25 14:03:24 -04:00

107 lines
2.2 KiB
Plaintext

@* NavMenu.razor *@
<div class="nav-vertical">
<!-- Brand -->
<a class="nav-brand" href="/">
<div class="brand-icon">🎬</div>
<div class="brand-text">I Know Them!</div>
</a>
<!-- Navigation Links -->
<nav class="nav-links">
<NavLink href="/" class="nav-link" Match="NavLinkMatch.All">
<span class="nav-icon">🏠</span>
<span class="nav-text">Home</span>
</NavLink>
<NavLink href="/searchmovies" class="nav-link">
<span class="nav-icon">🎭</span>
<span class="nav-text">Movies</span>
</NavLink>
<NavLink href="/searchshows" class="nav-link">
<span class="nav-icon">📺</span>
<span class="nav-text">TV Shows</span>
</NavLink>
</nav>
</div>
<style>
.nav-vertical {
display: flex;
flex-direction: column;
height: 100vh;
width: 100%;
padding: 16px;
background: rgba(255, 255, 255, 0.95);
border-right: 1px solid rgba(0, 0, 0, 0.06);
box-sizing: border-box;
}
.nav-brand {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 32px;
text-decoration: none;
}
.brand-icon {
font-size: 24px;
}
.brand-text {
font-size: 18px;
font-weight: 700;
color: #1a1a1a;
}
.nav-links {
display: flex;
flex-direction: column;
gap: 8px;
}
.nav-link {
display: flex;
align-items: center;
gap: 12px;
padding: 10px 12px;
text-decoration: none;
border-radius: 6px;
color: #6c757d;
font-size: 15px;
font-weight: 500;
transition: all 0.2s ease;
}
.nav-link:hover {
background: rgba(0, 0, 0, 0.04);
color: #495057;
}
.nav-link.active {
background: rgba(102, 126, 234, 0.1);
color: #667eea;
font-weight: 600;
}
.nav-icon {
font-size: 16px;
}
.nav-text {
white-space: nowrap;
}
@@media (max-width: 768px) {
.nav-vertical
{
padding: 12px;
}
.nav-text {
font-size: 14px;
}
}
</style>