import React from 'react'; import { useNavigate } from 'react-router-dom'; import { Button, Typography } from '@mui/material'; import theme from "../theme.jsx"; const NotFound = () => { const navigate = useNavigate(); const buttonStyle = { borderRadius: 25, height: 50, fontSize: 18, width: "100%", marginBottom: "10px", }; const primaryButtonStyle = { ...buttonStyle, background: "linear-gradient(89.83deg, #FF8444 0.13%, #F2643B 99.84%)", color: "white", '&:hover': { background: "linear-gradient(89.83deg, #FF8444 0.13%, #F2643B 99.84%)", opacity: 0.9, } }; const secondaryButtonStyle = { ...buttonStyle, background: "#383B40", border: "1px solid #494949", color: "white", '&:hover': { background: "#434649", } }; return (