Skip to content

Commit

Permalink
added logo
Browse files Browse the repository at this point in the history
  • Loading branch information
victor-zheng-codes committed Dec 7, 2024
1 parent caf885a commit 1e271e0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion components/Navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
import Link from 'next/link'
import Image from 'next/image'

const Navbar = () => {
return (
<nav className="bg-gray-800 p-4">
<div className="container mx-auto flex justify-between items-center">
<Link href="/" className="text-white text-lg font-bold">
Chess Tools
<Image
src="/chesstools.svg"
alt="Chess Tools"
width={100} // Set appropriate width
height={50} // Set appropriate height
/>
</Link>
<div className="space-x-4">
<Link href="/about" className="text-white hover:text-gray-300">
Expand Down
Loading

0 comments on commit 1e271e0

Please sign in to comment.