You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

13 lines
435 B

import React from "react";
export default function NotFound() {
return (
<div className="mx-auto max-w-screen-md px-4 py-20 text-center">
<h1 className="text-3xl font-semibold mb-2"></h1>
<p className="text-gray-600 mb-6">访线</p>
<a href="/" className="inline-block px-5 py-2.5 rounded bg-black text-white"></a>
</div>
);
}