summaryrefslogtreecommitdiff
path: root/resources/views/modules/user_welcome/welcome.phtml
blob: ff0dbe6f94d8dea903c946d216e58abdb493baf8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

declare(strict_types=1);

/**
 * @var array<array<string,string>> $links
 */

?>
<div class="d-flex flex-wrap justify-content-around">
    <?php foreach ($links as $link) : ?>
        <div class="text-center m-1">
            <a href="<?= e($link['url']) ?>">
                <i class="<?= $link['icon'] ?>"></i>
                <br>
                <?= $link['title'] ?>
            </a>
        </div>
    <?php endforeach ?>
</div>