NotFound.tsx
1 import { HttpStatusCode } from "@solidjs/start"; 2 import { Layout } from "./Layout"; 3 4 // here the whitespace-pre not working 5 const NotFound = () => { 6 return ( 7 <Layout> 8 <div class="flex flex-col w-full items-center justify-center h-full grow text-lg text-red-400 leading-none"> 9 <HttpStatusCode code={404} /> 10 /|、 11 <br /> 12 (˙、.7 13 <br /> 14 |、~ヽ 15 <br /> 16 じしf_,)ノ 17 <br /> 18 Page Not Found 19 </div> 20 </Layout> 21 ); 22 }; 23 24 export default NotFound;