aboutsummaryrefslogtreecommitdiff
path: root/src/components/Header.tsx
diff options
context:
space:
mode:
authormfoiani <mfoiani@mfoi.dev>2026-01-22 18:53:15 -0500
committermfoiani <mfoiani@mfoi.dev>2026-01-22 18:53:15 -0500
commitab074e0149433d31d66b06b6fbc84d2888a198df (patch)
tree380eb313fc7371703fc313dd8ec8d7e0d8393d9f /src/components/Header.tsx
parent74262215f4066dfc29a3939f73dac6280aa9d1a8 (diff)
small fixes to header and about us page
Diffstat (limited to 'src/components/Header.tsx')
-rw-r--r--src/components/Header.tsx9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/components/Header.tsx b/src/components/Header.tsx
index 0a17ad2..abb6dd0 100644
--- a/src/components/Header.tsx
+++ b/src/components/Header.tsx
@@ -7,6 +7,7 @@ import {
XMarkIcon,
} from "@heroicons/react/24/outline";
import { motion } from "motion/react";
+import Image from "next/image";
import Link from "next/link";
import { useState } from "react";
@@ -71,10 +72,12 @@ export default function Header() {
</button>
<a href="#" className="-m-1.5 p-1.5">
<span className="sr-only">Your Company</span>
- <img
+ <Image
alt="Sensible Scholars Logo"
- src="favicon.png"
- className="h-8 w-auto"
+ src="/favicon.png"
+ width={36}
+ height={36}
+ className="rounded-md"
/>
</a>
</div>