17 lines
831 B
React
17 lines
831 B
React
import React from 'react'
|
|
import { Link } from 'react-router-dom'
|
|
import SEOHead from '../components/SEOHead'
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<main style={{ paddingTop: '120px', minHeight: '100vh', display: 'flex', alignItems: 'center', justifyContent: 'center' }}>
|
|
<SEOHead title="Seite nicht gefunden" description="Die angeforderte Seite wurde nicht gefunden." noindex url="/404" />
|
|
<div className="app-container" style={{ textAlign: 'center' }}>
|
|
<h1 style={{ fontSize: '6rem', marginBottom: '16px' }}><span className="text-gradient">404</span></h1>
|
|
<p style={{ color: 'var(--text-secondary)', fontSize: '1.2rem', marginBottom: '32px' }}>Diese Seite existiert nicht.</p>
|
|
<Link to="/" className="primary-button">Zurück zur Startseite</Link>
|
|
</div>
|
|
</main>
|
|
)
|
|
}
|