feat: makieta mobilna pilota TravelLeader z profilem, opiniami i kalendarzem

This commit is contained in:
oskarn
2026-09-18 12:38:53 +02:00
parent af946d338a
commit 373bffa573
9 changed files with 2559 additions and 0 deletions
+40
View File
@@ -0,0 +1,40 @@
<?php
$currentPage = basename($_SERVER['PHP_SELF'], '.php');
?>
<!-- Dolna belka nawigacyjna (Bottom Navigation Bar - zawsze widoczna na dole) -->
<nav class="bottom-nav-bar">
<a href="index.php" class="bottom-nav-item <?= in_array($currentPage, ['index', 'trip-details']) ? 'active' : '' ?>">
<i class='bx <?= in_array($currentPage, ['index', 'trip-details']) ? 'bxs-compass' : 'bx-compass' ?>'></i>
<span>Wycieczki</span>
</a>
<a href="availability.php" class="bottom-nav-item <?= $currentPage === 'availability' ? 'active' : '' ?>">
<i class='bx <?= $currentPage === 'availability' ? 'bxs-calendar' : 'bx-calendar' ?>'></i>
<span>Dostępność</span>
</a>
<a href="courses.php" class="bottom-nav-item <?= $currentPage === 'courses' ? 'active' : '' ?>">
<i class='bx <?= $currentPage === 'courses' ? 'bxs-book-open' : 'bx-book-open' ?>'></i>
<span>Szkolenia</span>
</a>
<a href="profile.php" class="bottom-nav-item <?= in_array($currentPage, ['profile', 'profile-edit']) ? 'active' : '' ?>">
<i class='bx <?= in_array($currentPage, ['profile', 'profile-edit']) ? 'bxs-user-pin' : 'bx-user' ?>'></i>
<span>Mój Profil</span>
<span class="nav-indicator" title="Profil wymaga uzupełnienia"></span>
</a>
</nav>
</div><!-- /.phone-screen -->
</div><!-- /.phone-viewport-wrapper -->
<!-- Lokalne skrypty Bootstrap (z projektu Magico, bez jsdelivr) -->
<script src="../../assets/vendor/js/bootstrap.js"></script>
<!-- Magico Feedback JS -->
<?php if (!empty($enablePrototypeComments)): ?>
<script src="../../assets/js/comments.js"></script>
<?php endif; ?>
</body>
</html>