Skip to content

Commit fd89866

Browse files
committed
Fix logo path
1 parent 69ca002 commit fd89866

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

components/Header.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
'use client'
22

3-
import Pic from '/hodlcoin.svg'
43
import Image from 'next/image'
54
import React from 'react'
65
import { useTheme } from 'next-themes'
@@ -23,15 +22,15 @@ export function Header() {
2322
{useTheme().theme === 'dark' ? (
2423
<Image
2524
className='cursor-pointer h-[100%] w-auto py-2 hidden lg:inline-block'
26-
src={Pic}
25+
src="/hodlcoin.svg"
2726
width={100}
2827
height={100}
2928
alt=''
3029
/>
3130
) : (
3231
<Image
3332
className='cursor-pointer h-[100%] w-auto py-2 hidden lg:inline-block'
34-
src={Pic}
33+
src="/hodlcoin.svg"
3534
width={100}
3635
height={100}
3736
alt=''

0 commit comments

Comments
 (0)