import { Button, Container, Text } from "@chakra-ui/react" import { Link } from "@tanstack/react-router" import type React from "react" const NotFound: React.FC = () => { return ( <> 404 Oops! Page not found. ) } export default NotFound