Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 18 additions & 16 deletions Frontend/src/client/components/layout/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,24 @@ function Header({ onTicketsClick }) {
return (
<div className="w-full h-screen bg-[url(/images/header-background-image.jpg)] bg-cover bg-fixed object-cover">
<Navbar bgColor="bg-gray-700/30" />
<button onClick={onTicketsClick} className="cursor-pointer bg-gray-800 opacity-95 px-3 py-2 rounded-md text-yellow-400 tracking-shadow-xl animate-bounce absolute bottom-10 left-1/2 ">
<svg
className="w-7 h-7"
stroke="currentColor"
strokeWidth="2"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19.5 13.5 12 21m0 0-7.5-7.5M12 21V3"
strokeLinejoin="round"
strokeLinecap="round"
></path>
</svg>
</button>
<div className="w-full text-center absolute bottom-10">
<button onClick={onTicketsClick} className="cursor-pointer bg-gray-800 opacity-95 px-3 py-2 rounded-md text-yellow-400 tracking-shadow-xl animate-bounce">
<svg
className="w-7 h-7"
stroke="currentColor"
strokeWidth="2"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M19.5 13.5 12 21m0 0-7.5-7.5M12 21V3"
strokeLinejoin="round"
strokeLinecap="round"
></path>
</svg>
</button>
</div>

</div>
);
Expand Down