Skip to content

Commit

Permalink
fix-#387: added logo beside title in navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
Adityajparmar37 committed Jun 2, 2024
1 parent 055bdb8 commit 4779f83
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions frontend/src/layouts/header-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,13 @@ function header() {
<div className="absolute inset-0 bg-black opacity-50"></div>
<div className="absolute inset-0 flex flex-col px-8 py-8 text-slate-50 sm:px-16">
<div className="flex w-full justify-between">
<div className="flex cursor-text items-center justify-between text-2xl font-semibold">
<Link to="/" style={{ textDecoration: 'none' }}>WanderLust</Link>
<div className="flex cursor-text items-center justify-between gap-2 text-2xl font-semibold">
<Link to="/">
<img src="./src/assets/svg/app-icon.svg" className="h-10 w-10" />
</Link>
<Link to="/" style={{ textDecoration: 'none' }}>
WanderLust
</Link>
</div>
<div className="flex items-center justify-between">
<div className="flex items-center justify-end px-4 sm:px-20">
Expand Down

0 comments on commit 4779f83

Please sign in to comment.