14 lines
418 B
TypeScript
14 lines
418 B
TypeScript
|
|
import React, { useEffect, useRef } from 'react'
|
||
|
|
|
||
|
|
const NotFoundPage = () => {
|
||
|
|
return (
|
||
|
|
<div className="flex flex-col items-center justify-center min-h-[90vh] bg-white font-inter">
|
||
|
|
<div className="text-[8rem] sm:text-[10rem] md:text-[12rem] font-bold mb-6 bg-gradient-to-br from-primary to-secondary bg-clip-text animate-pulse">
|
||
|
|
404
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|
||
|
|
|
||
|
|
export default NotFoundPage
|