Skip to content

Commit

Permalink
Merge pull request #37 from fac29/logo-fix
Browse files Browse the repository at this point in the history
Logo .svg changed to .jpg
  • Loading branch information
AlexPD93 authored Jul 30, 2024
2 parents b570526 + fa67d37 commit 4a82bf1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 42 deletions.
9 changes: 7 additions & 2 deletions components/component/nav-bar.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
import Link from "next/link";
import { Logo } from "../ui/logo";
import Image from "next/image";

export function NavBar() {
return (
<header className="flex h-32 items-center justify-between px-4 md:px-6">
<Link href="/" className="flex items-center gap-2" prefetch={false}>
<Logo />
<Image
// className="hover:bg-[#e6e6e6]"
src="/The-Norm_Logo_Strapline_CHARCOAL_1.svg"
width={200}
height={200}
alt="The Norm Logo"
/>
</Link>
<nav className="p-4">
<div className="flex items-center">
Expand Down
40 changes: 0 additions & 40 deletions components/ui/logo.tsx

This file was deleted.

0 comments on commit 4a82bf1

Please sign in to comment.