-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
450f62d
commit 141e0aa
Showing
4 changed files
with
14 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,21 @@ | ||
export function Navbar(props: { title?: string }) { | ||
return ( | ||
<> | ||
<header className="flex w-full flex-row items-center justify-center align-middle"> | ||
<div className="flex h-16 items-center justify-between bg-[#333333] px-16 w-[50%] mt-3 rounded-3xl "> | ||
<div className="flex justify-center mt-4"> | ||
<header className="flex h-16 w-1/2 rounded-full items-center justify-between bg-[#333333] px-6"> | ||
<div className="flex items-center gap-4"> | ||
<div className="flex items-center gap-2"> | ||
<img src="/tauri.svg" height={"20px"} width={"20px"} alt="" /> | ||
<img src="/tauri.svg" height="20px" width="20px" alt="" /> | ||
<span className="font-sans text-lg font-bold text-gray-50"> | ||
Pictopy | ||
<div className="flex items-center gap-4"> | ||
<span className="font-sans text-lg font-medium text-gray-50"> | ||
Welcome {props.title || 'User'} | ||
</span> | ||
</div> | ||
</div> | ||
<div className="flex items-center gap-4"> | ||
<span className="font-sans text-lg font-medium text-gray-50"> | ||
Welcome {props.title || 'User'} | ||
</span> | ||
</div> | ||
</header> | ||
</> | ||
</div> | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.