Add Netflix not found page

This commit is contained in:
MOHAMED RIAD
2021-12-15 22:40:24 +01:00
parent 969e28f26e
commit c03104c8dc

View File

@@ -3,7 +3,19 @@ import React from 'react';
const NotFound = () => {
return (
<div className='not-found__message'>
<h1>NOT FOUND</h1>
{/* TODO: add css to match netflix not found page */}
<h1>LOST YOUR WAY?</h1>
<p>
Sorry, we can't find that page. You'll find lots to explore on
the home page.
</p>
<button>Netflix Home</button>
<span>
Error Code <strong>NSES-404</strong>
</span>
<span>
FROM <strong>LOST IN SPACE</strong>
</span>
</div>
);
};