diff --git a/public_html/config/navi_left.php b/public_html/config/navi_left.php new file mode 100644 index 0000000000000000000000000000000000000000..645a61cc429f6d53d6dc8004bc11115f154872cd --- /dev/null +++ b/public_html/config/navi_left.php @@ -0,0 +1,14 @@ +<?php + +// icons: https://fontawesome.com/v5/search?o=r&m=free + +return [ + ['href'=>'#', 'label'=>'Menu A', 'icon'=>'fas fa-home' ], + ['href'=>'#', 'label'=>'Menu B', 'icon'=>'fas fa-tv'], + ['href'=>'#', 'label'=>'Menu C', 'icon'=>'fas fa-truck-pickup', + 'children'=>[ + ['href'=>'#', 'label'=>'FAQ' , 'icon'=>'fas fa-truck-monster'], + ['href'=>'#', 'label'=>'Support' , 'icon'=>'fas fa-truck-moving'], + ] + ] +]; \ No newline at end of file diff --git a/public_html/config/navi_top.php b/public_html/config/navi_top.php new file mode 100644 index 0000000000000000000000000000000000000000..3f48208c4dd0180993e3889403d5cf0630256afc --- /dev/null +++ b/public_html/config/navi_top.php @@ -0,0 +1,15 @@ +<?php + +// icons: https://fontawesome.com/v5/search?o=r&m=free + +return [ + ['href'=>'/index.php', 'label'=>'MyHome' , 'icon'=>'fas fa-home', 'class'=>'bg-gray'], + ['href'=>'#', 'label'=>'Contact' ], + ['href'=>'#', 'label'=>'Help', + 'children'=>[ + ['href'=>'#', 'label'=>'FAQ'], + ['label'=>'-'], + ['href'=>'#', 'label'=>'Support'], + ] + ] +]; \ No newline at end of file