File tree 1 file changed +6
-4
lines changed 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
import Footer from '@/components/Footer' ;
2
2
import Navbar from '@/components/Navbar' ;
3
-
3
+ import { motion } from 'framer-motion' ;
4
4
export default function Custom404 ( ) {
5
5
return (
6
6
< section className = "flex flex-col min-h-screen justify-between py-8 xl:px-24 md:px-10 px-5 relative overflow-hidden" >
@@ -11,9 +11,11 @@ export default function Custom404() {
11
11
Sorry! We can't find the page you're looking for!
12
12
< br />
13
13
</ p >
14
- < p className = "text-2xl pt-10" >
15
- While we may have found some tomfoolery, we haven't found your page :'(
16
- </ p >
14
+ < motion . div className = "opacity-0" whileHover = { { opacity : 1 } } transition = { { duration : 0.2 } } >
15
+ < p className = "text-2xl pt-10" >
16
+ While we may have found some tomfoolery, we haven't found your page :'(
17
+ </ p >
18
+ </ motion . div >
17
19
< a href = "/" >
18
20
< button className = "mt-10 bg-white border text-[#3977F8] border-[#A7A6E5] text-lg rounded-xl w-[30%] xl:h-12 h-10" >
19
21
Back to saftey
You can’t perform that action at this time.
0 commit comments