File tree 1 file changed +2
-3
lines changed
src/components/shared/navbar
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 1
1
'use client' ;
2
2
3
+ import Image from 'next/image'
3
4
import { useLocale , useTranslations } from 'next-intl' ;
4
5
import Link from 'next/link' ;
5
6
import { usePathname , useRouter } from 'next/navigation' ;
@@ -14,7 +15,6 @@ import Sidebar from '../sidebar/sidebar';
14
15
import styles from './Navbar.module.css' ;
15
16
import { AppContext } from '../../../../context/AppContextProvider' ;
16
17
import logger from '../../../../logger.config.mjs' ;
17
- import Image from 'next/image'
18
18
19
19
function Navbar ( ) {
20
20
const router = useRouter ( ) ;
@@ -47,7 +47,6 @@ function Navbar() {
47
47
setSidebarToggle ( ! sidebarToggle ) ;
48
48
} ;
49
49
50
-
51
50
const handleClick = ( e : any ) => {
52
51
e . preventDefault ( ) ;
53
52
window . open ( "https://mapofpi.zapier.app" , "_blank" , "noopener, noreferrer" ) ;
@@ -90,7 +89,7 @@ function Navbar() {
90
89
< Link href = "/" >
91
90
< Image
92
91
src = "/images/logo.svg"
93
- alt = "Home Logo"
92
+ alt = "Map of Pi Home Logo"
94
93
width = { 34 }
95
94
height = { 34 }
96
95
/>
You can’t perform that action at this time.
0 commit comments