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
4 changes: 2 additions & 2 deletions src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ import { NavLink } from "react-router";
export default function Header() {
return (
<header className="sticky top-0 bg-primary/80 backdrop-blur-lg py-4 flex justify-around items-center">
<div className="flex gap-2 items-center">
<NavLink className="flex gap-2 items-center" to="/">
<img
className="w-16"
src={"/images/coffee_cup.jpg"}
alt="Code Cafe Logo"
/>
<h1 className="text-secondary text-3xl">Code Cafe</h1>
</div>
</NavLink>
<nav>
<ul className="flex list-none gap-3 text-secondary">
<li>
Expand Down
Loading