We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69ca002 commit fd89866Copy full SHA for fd89866
1 file changed
components/Header.tsx
@@ -1,6 +1,5 @@
1
'use client'
2
3
-import Pic from '/hodlcoin.svg'
4
import Image from 'next/image'
5
import React from 'react'
6
import { useTheme } from 'next-themes'
@@ -23,15 +22,15 @@ export function Header() {
23
22
{useTheme().theme === 'dark' ? (
24
<Image
25
className='cursor-pointer h-[100%] w-auto py-2 hidden lg:inline-block'
26
- src={Pic}
+ src="/hodlcoin.svg"
27
width={100}
28
height={100}
29
alt=''
30
/>
31
) : (
32
33
34
35
36
37
0 commit comments