Initial import

This commit is contained in:
Admin Nasledstvo
2026-05-01 20:52:04 +03:00
commit ac168868ee
10028 changed files with 2337954 additions and 0 deletions
@@ -0,0 +1,21 @@
<?php
$mobileApps = [
['Google Play', 'google-play', '/bg/app-download/nasledstvo.apk/'],
['Apple Store', 'apple-store', '/bg/app-download/nasledstvo.apk/'],
];
?>
<div class="flex" style="justify-content: center">
<?php foreach ($mobileApps as $mobileApp): ?>
<a href="<?= $mobileApp[2] ?>" class="mobile-button">
<img class="logo" src="/_public/images/mobile/<?= $mobileApp[1] ?>.png">
<div class="mb-content">
<div class="small-top"><?= \app\models\Ts::get(24) ?></div>
<div class="name"><?= $mobileApp[0] ?></div>
</div>
</a>
<?php endforeach; ?>
</div>