a tool for shared writing and social publishing
1export const NotFoundLayout = (props: { children: React.ReactNode }) => {
2 return (
3 <div className="w-screen h-full flex place-items-center bg-bg-leaflet p-4">
4 <div className="bg-bg-page mx-auto p-4 border border-border rounded-md flex flex-col text-center justify-center gap-1 w-fit">
5 {props.children}
6 </div>
7 </div>
8 );
9};