File tree Expand file tree Collapse file tree 4 files changed +36
-0
lines changed Expand file tree Collapse file tree 4 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 42
42
},
43
43
"engines" : {
44
44
"node" : " >=18.17.0"
45
+ },
46
+ "dependencies" : {
47
+ "react-icons" : " ^5.3.0"
45
48
}
46
49
}
Original file line number Diff line number Diff line change
1
+ import React from "react" ;
2
+ import Image from "next/image" ;
3
+ import Link from "next/link" ;
4
+
5
+ const NotFound = ( ) => {
6
+ return (
7
+ < main className = " text-center" >
8
+ < div className = " h-[500px] md:w-auto my-[100px]" >
9
+ < Image alt = " 404image" src = { "/404.svg" } height = { 300 } width = { 300 } className = " overflow-hidden h-full w-full" />
10
+ < p className = " text-sm font-light" >
11
+ Go back to the{ " " }
12
+ < Link href = { "/" } >
13
+ { " " }
14
+ < span className = " font-normal underline text-primary-content text-base" > Home Page</ span > { " " }
15
+ </ Link > { " " }
16
+ </ p >
17
+ </ div >
18
+ </ main >
19
+ ) ;
20
+ } ;
21
+
22
+ export default NotFound ;
Original file line number Diff line number Diff line change @@ -12019,6 +12019,15 @@ __metadata:
12019
12019
languageName: node
12020
12020
linkType: hard
12021
12021
12022
+ "react-icons@npm:^5.3.0":
12023
+ version: 5.3.0
12024
+ resolution: "react-icons@npm:5.3.0"
12025
+ peerDependencies:
12026
+ react: "*"
12027
+ checksum: 3aa5f50e05aafc6d31e0d995fe0d98560069aa88717b24ce8aaa082a7e7b20ca95e1e19d847ed6e52d658a5a30e15826af20d7554bf993a743edd55586db62e3
12028
+ languageName: node
12029
+ linkType: hard
12030
+
12022
12031
"react-is@npm:^16.13.1":
12023
12032
version: 16.13.1
12024
12033
resolution: "react-is@npm:16.13.1"
@@ -12680,6 +12689,7 @@ __metadata:
12680
12689
dependencies:
12681
12690
husky: ^8.0.1
12682
12691
lint-staged: ^13.0.3
12692
+ react-icons: ^5.3.0
12683
12693
languageName: unknown
12684
12694
linkType: soft
12685
12695
You can’t perform that action at this time.
0 commit comments