Files
Orchestrator/privat/CV/andreknie.de/src/pages/NotFound.jsx
T

15 lines
662 B
React

import React from 'react'
import { Link } from 'react-router-dom'
export default function NotFound() {
return (
<main style={{ paddingTop: '120px', minHeight: '100vh', display: 'flex', alignItems: 'center', justifyContent: 'center' }}>
<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>
)
}