dealhub/resources/views/components/nav-links.blade.php
kusowl 33cbdea12b feat(landing page): add navbar and hero section
- change root route '/' to HomeController
- add main layout
- add navbar and hero blade component
- add custom tailwind classes
- separate css files for button component
2026-01-07 17:03:18 +05:30

5 lines
110 B
PHP

@props(['link' => '', 'name' => ''])
<li>
<a class="hover:underline" href="{{$link}}">{{$name}}</a>
</li>