mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 22:53:25 +00:00
16 lines
340 B
TypeScript
16 lines
340 B
TypeScript
import { NextSeo } from "next-seo";
|
|
|
|
import styles from "styles/error-page.module.scss";
|
|
|
|
export default function Custom500() {
|
|
return (
|
|
<>
|
|
<NextSeo title="Une erreur est survenue" />
|
|
<div className={styles["App"]}>
|
|
<h1>500</h1>
|
|
<h2>Une erreur côté serveur est survenue.</h2>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|