You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 line
1019B

  1. <div class="bg-gray-900 z-20">
  2. <div class="container mx-auto px-8 py-8 md:py-16 flex flex-col md:flex-row items-center text-center md:text-left">
  3. <div class="flex flex-shrink justify-end mb-8 md:-mb-20 pr-0 md:pr-16">
  4. @includes('rocket')
  5. </div>
  6. <div class="flex flex-col justify-center flex-grow">
  7. <a href="/" class="text-4xl text-white">
  8. Whoosh!
  9. </a>
  10. <div class="text-2xl text-gray-300">
  11. A place to buy rocket things
  12. </div>
  13. <ol class="text-white flex flex-row space-x-2">
  14. <li><a class="underline" href="/">Home</a></li>
  15. @if(session()->has('user_id'))
  16. <li><a class="underline" href="/log-out">Log out</a></li>
  17. @endif
  18. @if(!session()->has('user_id'))
  19. <li><a class="underline" href="/register">Register</a></li>
  20. @endif
  21. </ol>
  22. </div>
  23. </div>
  24. </div>

Powered by TurnKey Linux.