Files
clinicpro/templates/public/_header.html.twig
T
hamedandClaude Opus 5 1ca20b6f53 feat(public): add About Us page
Adds a public "درباره ما" page at /درباره-ما reusing the landing theme
(same webpack entry, header, footer, registration modal). Section ids
match the header anchors so the nav works on this page too.

The explicit route takes precedence over LandingController's catch-all
/{slug}, which is registered with priority -10.

Also links it from the header nav and footer quick links, and lists it
in sitemap.xml.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-19 14:54:06 +03:30

29 lines
1.3 KiB
Twig

<!-- ===================== Header ===================== -->
<header class="site-header" id="header">
<div class="wrap nav">
<a class="brand" href="#hero" aria-label="کلینیک پرو">
<b>کلینیک پرو</b>
<span class="dot"></span>
<small>مدیریت مطب</small>
</a>
<nav class="nav-links" id="navLinks">
<a href="#hero" class="active">خانه</a>
<a href="#features">امکانات</a>
<a href="#why">چرا کلینیک پرو</a>
<a href="#download" style="display:none">دانلود</a>
<a href="/درباره-ما">دربارهٔ ما</a>
<a href="#contact">تماس با ما</a>
<a href="#" id="openRegModalNav" class="nav-reg-mobile">ثبت نام</a>
</nav>
<div class="nav-right">
<button class="nav-burger nav-toggle" id="navToggle" aria-label="منو">
<svg viewbox="0 0 24 24" fill="none"><path d="M4 7h16M4 12h16M4 17h16" stroke="currentColor" stroke-width="2.2" stroke-linecap="round"/></svg>
</button>
<button class="btn btn-ghost" id="openRegModal" style="font-size:13px;padding:8px 20px">ثبت نام</button>
<a href="/admin" class="btn btn-blue" style="font-size:13px;padding:8px 20px;text-decoration:none">ورود به پنل</a>
</div>
</div>
</header>