File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 11import Footer from '@/components/Footer' ;
22import Navbar from '@/components/Navbar' ;
3-
3+ import { motion } from 'framer-motion' ;
44export default function Custom404 ( ) {
55 return (
66 < 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() {
1111 Sorry! We can't find the page you're looking for!
1212 < br />
1313 </ 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 >
1719 < a href = "/" >
1820 < button className = "mt-10 bg-white border text-[#3977F8] border-[#A7A6E5] text-lg rounded-xl w-[30%] xl:h-12 h-10" >
1921 Back to saftey
You can’t perform that action at this time.
0 commit comments