erp-platform/ui/src/views/NotFound.tsx

14 lines
418 B
TypeScript
Raw Normal View History

2025-06-28 21:34:28 +00:00
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