Landing: visible navbar with page links, remove price from dashboard
- Nav background visible immediately (semi-transparent dark with blur) - Added Инструменты and Возможности links in nav (hidden on mobile) - Added id=features to advantages section for smooth scroll - Replaced 0₽ with Free label on dashboard about section
This commit is contained in:
parent
020d031627
commit
d9202d2821
@ -174,8 +174,8 @@
|
|||||||
<div class="label">категории</div>
|
<div class="label">категории</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="about-stat">
|
<div class="about-stat">
|
||||||
<div class="num">0 ₽</div>
|
<div class="num" style="color:#22c55e;">Free</div>
|
||||||
<div class="label">навсегда</div>
|
<div class="label">бесплатно</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -282,6 +282,7 @@
|
|||||||
gap: 20px;
|
gap: 20px;
|
||||||
}
|
}
|
||||||
@media (min-width: 640px) {
|
@media (min-width: 640px) {
|
||||||
|
.nav-link { display:inline-flex; }
|
||||||
.cat-grid { grid-template-columns: repeat(2, 1fr); }
|
.cat-grid { grid-template-columns: repeat(2, 1fr); }
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
@ -489,7 +490,7 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
padding: 16px 32px;
|
padding: 16px 32px;
|
||||||
background: rgba(6, 12, 24, 0);
|
background: rgba(6, 12, 24, 0.7); backdrop-filter: blur(12px);
|
||||||
border-bottom: 1px solid transparent;
|
border-bottom: 1px solid transparent;
|
||||||
transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
|
transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
|
||||||
}
|
}
|
||||||
@ -522,6 +523,10 @@
|
|||||||
padding: 8px 4px;
|
padding: 8px 4px;
|
||||||
}
|
}
|
||||||
.nav-link:hover { color: var(--text-primary); }
|
.nav-link:hover { color: var(--text-primary); }
|
||||||
|
.nav-link.nav-page { display: none; }
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.nav-link.nav-page { display: inline-flex; }
|
||||||
|
}
|
||||||
.nav-btn {
|
.nav-btn {
|
||||||
font-family: 'Manrope', sans-serif;
|
font-family: 'Manrope', sans-serif;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
@ -588,6 +593,8 @@
|
|||||||
<nav class="landing-nav" id="mainNav">
|
<nav class="landing-nav" id="mainNav">
|
||||||
<a href="/" class="nav-logo">WA Dev <span>Tools</span></a>
|
<a href="/" class="nav-logo">WA Dev <span>Tools</span></a>
|
||||||
<div class="nav-actions">
|
<div class="nav-actions">
|
||||||
|
<a href="#tools" class="nav-link nav-page">Инструменты</a>
|
||||||
|
<a href="#features" class="nav-link nav-page">Возможности</a>
|
||||||
<a href="/auth/login" class="nav-link">Войти</a>
|
<a href="/auth/login" class="nav-link">Войти</a>
|
||||||
<a href="/auth/register" class="nav-btn">Регистрация</a>
|
<a href="/auth/register" class="nav-btn">Регистрация</a>
|
||||||
</div>
|
</div>
|
||||||
@ -774,7 +781,7 @@
|
|||||||
<!-- ════════════════════════════════════════════
|
<!-- ════════════════════════════════════════════
|
||||||
ADVANTAGES
|
ADVANTAGES
|
||||||
════════════════════════════════════════════ -->
|
════════════════════════════════════════════ -->
|
||||||
<section class="adv-section">
|
<section class="adv-section" id="features">
|
||||||
<div style="max-width:1120px;margin:0 auto;">
|
<div style="max-width:1120px;margin:0 auto;">
|
||||||
<div class="adv-grid">
|
<div class="adv-grid">
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user