|
|
@ -7,7 +7,7 @@ import AccountDropdown from './AccountDropdown.astro'; |
|
|
|
<nav class='container flex items-center justify-between'> |
|
|
|
<nav class='container flex items-center justify-between'> |
|
|
|
<a class='flex items-center text-lg font-medium text-white' href='/'> |
|
|
|
<a class='flex items-center text-lg font-medium text-white' href='/'> |
|
|
|
<Icon icon='logo' /> |
|
|
|
<Icon icon='logo' /> |
|
|
|
<span class='ml-3'>roadmap.sh</span> |
|
|
|
<span class='ml-3 hidden md:block'>roadmap.sh</span> |
|
|
|
</a> |
|
|
|
</a> |
|
|
|
|
|
|
|
|
|
|
|
<!-- Desktop navigation items --> |
|
|
|
<!-- Desktop navigation items --> |
|
|
@ -26,6 +26,9 @@ import AccountDropdown from './AccountDropdown.astro'; |
|
|
|
<li> |
|
|
|
<li> |
|
|
|
<a href='/videos' class='text-gray-400 hover:text-white'>Videos</a> |
|
|
|
<a href='/videos' class='text-gray-400 hover:text-white'>Videos</a> |
|
|
|
</li> |
|
|
|
</li> |
|
|
|
|
|
|
|
<li data-guest-required> |
|
|
|
|
|
|
|
<a href='/login' class='text-gray-400 hover:text-white'>Login</a> |
|
|
|
|
|
|
|
</li> |
|
|
|
<li> |
|
|
|
<li> |
|
|
|
<AccountDropdown /> |
|
|
|
<AccountDropdown /> |
|
|
|
|
|
|
|
|
|
|
@ -111,7 +114,16 @@ import AccountDropdown from './AccountDropdown.astro'; |
|
|
|
<a |
|
|
|
<a |
|
|
|
data-guest-required |
|
|
|
data-guest-required |
|
|
|
href='/signup' |
|
|
|
href='/signup' |
|
|
|
class='text-xl text-red-300 hover:text-red-400 md:text-lg' |
|
|
|
class='text-xl text-white md:text-lg' |
|
|
|
|
|
|
|
> |
|
|
|
|
|
|
|
Login |
|
|
|
|
|
|
|
</a> |
|
|
|
|
|
|
|
</li> |
|
|
|
|
|
|
|
<li> |
|
|
|
|
|
|
|
<a |
|
|
|
|
|
|
|
data-guest-required |
|
|
|
|
|
|
|
href='/signup' |
|
|
|
|
|
|
|
class='text-xl text-green-300 hover:text-green-400 md:text-lg' |
|
|
|
> |
|
|
|
> |
|
|
|
Sign Up |
|
|
|
Sign Up |
|
|
|
</a> |
|
|
|
</a> |
|
|
|