File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ const About = () => {
38
38
width = { 521 }
39
39
height = { 728 }
40
40
className = "rounded-lg shadow-lg object-cover mr-0 md:mr-8"
41
- priority
41
+ priority = { true }
42
42
/>
43
43
</ div >
44
44
</ div >
Original file line number Diff line number Diff line change 3
3
import { Menu } from "./Menu" ;
4
4
import Image from "next/image" ;
5
5
import Logo from "@/assets/Logo.svg" ;
6
+ import Link from "next/link" ;
6
7
7
8
export function Header ( ) {
8
9
return (
9
10
< header className = "flex justify-between items-center p-4 bg-black mx-[10px] md:mx-[122px] mt-[20px] md:mt-[50px]" >
10
11
< div className = "flex items-center" >
11
- < Image src = { Logo } alt = "Logo" />
12
+ < Link href = "/" >
13
+
14
+ < Image src = { Logo } alt = "Logo" />
15
+ </ Link >
12
16
</ div >
13
17
< Menu />
14
18
</ header >
You can’t perform that action at this time.
0 commit comments