From f8bcce6f461c8268fa9cd781615c4931852048f4 Mon Sep 17 00:00:00 2001 From: Nimrah Saleem Date: Mon, 12 Aug 2024 13:03:04 -0700 Subject: [PATCH] made the image webp instead of png --- public/images/{H4BNavLogo.png => H4BNavLogo.webp} | Bin src/components/Navigation.jsx | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename public/images/{H4BNavLogo.png => H4BNavLogo.webp} (100%) diff --git a/public/images/H4BNavLogo.png b/public/images/H4BNavLogo.webp similarity index 100% rename from public/images/H4BNavLogo.png rename to public/images/H4BNavLogo.webp diff --git a/src/components/Navigation.jsx b/src/components/Navigation.jsx index 3d4aac8..579bb90 100644 --- a/src/components/Navigation.jsx +++ b/src/components/Navigation.jsx @@ -2,7 +2,7 @@ import Image from "next/image"; import Link from "next/link"; import React, { useState } from "react"; -import logo from "@/public/images/H4BNavLogo.png"; +import logo from "@/public/images/H4BNavLogo.webp"; import { IoMdMenu } from "react-icons/io"; import { ITEMS } from "@/data/Navigation.js";