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

20 lines
736 B
PHP

<nav class="grid grid-cols-3 items-center wrapper py-6 shadow-xl">
<div class="logo">
<a href="" class="font-bold text-2xl">{{config('app.name')}}</a>
</div>
<div class="nav-links place-self-center">
<ul class="flex space-x-8 text-accent-600">
<x-nav-links :link="route('home')" name="Home" />
<x-nav-links :link="route('home')" name="Explore deals" />
<x-nav-links :link="route('home')" name="About" />
<x-nav-links :link="route('home')" name="Contact" />
</ul>
</div>
<div class="nav-buttons space-x-4 place-self-end font-medium">
<a href="">Login</a>
<a href="" class="ui-btn ui-btn-neutral">Register</a>
</div>
</nav>