diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 49b9dde..0806d38 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -1,7 +1,6 @@ 'use client' import { Fragment, useEffect, useRef, useState } from 'react' -import Image from 'next/image' import Link from 'next/link' import { usePathname } from 'next/navigation' import { useTheme } from 'next-themes' @@ -10,7 +9,6 @@ import clsx from 'clsx' import { XMarkIcon, ChevronDownIcon } from '@heroicons/react/24/solid' import { Container } from '@/components/Container' -import avatarImage from '@/images/avatar.jpg' function SunIcon(props: React.ComponentPropsWithoutRef<'svg'>) { return ( @@ -216,16 +214,33 @@ function Avatar({ className={clsx(className, 'pointer-events-auto')} {...props} > - + fill="currentColor" + > + + + + + + + + + ) } diff --git a/src/images/avatar.jpg b/src/images/avatar.jpg deleted file mode 100644 index 869f6f1..0000000 Binary files a/src/images/avatar.jpg and /dev/null differ