23 lines
462 B
JavaScript
23 lines
462 B
JavaScript
// Inside the "pages/404.js" file
|
|
export default function Custom404() {
|
|
return (
|
|
<div>
|
|
<h1>
|
|
Welcome to <span style={{ color: "green" }}>
|
|
SECURITY OPS
|
|
</span>
|
|
</h1>
|
|
|
|
<p>In Code We Trust</p>
|
|
|
|
|
|
<p>Keep Learning.</p>
|
|
|
|
|
|
<h2>
|
|
This is a <span style={{ color: "red" }}>404 page</span>
|
|
</h2>
|
|
</div>
|
|
);
|
|
}
|