From 45f7ff1d68320bb56c448288a97ae18dd266769b Mon Sep 17 00:00:00 2001 From: Fearghal Kavanagh <121862261+Feargh@users.noreply.github.com> Date: Tue, 30 Jul 2024 12:22:32 +0100 Subject: [PATCH 1/4] Changed image to fix typescript error that was stopping deployment --- components/ui/logo.tsx | 42 +++++++++--------------------------------- 1 file changed, 9 insertions(+), 33 deletions(-) diff --git a/components/ui/logo.tsx b/components/ui/logo.tsx index 77f4174..2af2622 100644 --- a/components/ui/logo.tsx +++ b/components/ui/logo.tsx @@ -3,38 +3,14 @@ import Image from "next/image"; export function Logo() { return ( - - - - - - - - " - /> - - - + + The Norm Logo + ); } From ce11aa8aeb390c4317e7772f670fae29075aa2ad Mon Sep 17 00:00:00 2001 From: Fearghal Kavanagh <121862261+Feargh@users.noreply.github.com> Date: Tue, 30 Jul 2024 12:31:57 +0100 Subject: [PATCH 2/4] Removed logo component from navbar --- components/component/nav-bar.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/components/component/nav-bar.tsx b/components/component/nav-bar.tsx index 18a2eb4..a958c81 100644 --- a/components/component/nav-bar.tsx +++ b/components/component/nav-bar.tsx @@ -1,12 +1,18 @@ import Link from "next/link"; -import { Logo } from "../ui/logo"; +// import { Logo } from "../ui/logo"; import Image from "next/image"; export function NavBar() { return (
- + The Norm Logo