Skip to content

Commit

Permalink
Added logo to the welcome page logged out navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Raccoon254 committed Jun 22, 2024
1 parent 1f0ae16 commit a125d3c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
1 change: 0 additions & 1 deletion resources/views/layouts/navigation.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@
<span>Orders</span>
</a>
</li>
<!-- Logout -->
<li>
<form method="POST" action="{{ route('logout') }}">
@csrf
Expand Down
7 changes: 6 additions & 1 deletion resources/views/layouts/navigation/logged-out.blade.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
<nav class="bg-gray-100">
<div class="container mx-auto px-4 sm:px-6 lg:px-8 py-4">
<div class="flex justify-between items-center">
<a href="{{ route('home') }}" class="text-2xl font-bold text-black/90">Scholarspace</a>
<div class="flex items-center gap-2">
<x-application-logo class="h-8"/>
<h3 class="text-lg md:text-2xl text-black/80 font-bold">
Scholarspace
</h3>
</div>
<div class="hidden md:flex items-center space-x-4">
<a href="{{ route('home') }}" class="text-black/50 hover:text-black">Home</a>
<a href="{{ route('how-it-works') }}" class="text-black/50 hover:text-black">How It Works</a>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/welcome.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<div class="flex px-1 sm:px-4 lg:px-8 flex-col md:flex-row items-center justify-between">
<div class="text-center sm:w-2/3 relative md:text-left">
<img src="{{ asset('images/svg2.png') }}" alt="Hero"
class="w-64 hidden md:block -top-16 opacity-50 right-0 absolute rounded-lg">
class="w-64 hidden -top-16 opacity-50 right-0 absolute rounded-lg">
<div class="top-0 left-0 w-full h-full flex flex-col justify-center">
<section class="mb-4 text-left">
<header class="mb-4">
Expand Down

0 comments on commit a125d3c

Please sign in to comment.