mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-10 07:25:35 +00:00
16 lines
446 B
TypeScript
16 lines
446 B
TypeScript
import Head from 'next/head';
|
|
import styles from '../styles/error-page.module.scss';
|
|
|
|
import { config } from '../config';
|
|
|
|
export default function Custom500() {
|
|
return (<>
|
|
<Head>
|
|
<title>{config.siteName} — Une erreur côté serveur est survenue</title>
|
|
</Head>
|
|
<div className={styles['App']}>
|
|
<h1>500</h1>
|
|
<h2>Une erreur côté serveur est survenue.</h2>
|
|
</div>
|
|
</>)
|
|
} |