Files
ClickerZ/Frontend/src/pages/404.jsx
Tetardtek b58d39e707 feat: migrate SCSS → Tailwind CSS + remove sass dependency
12 SCSS files (1167 lines) replaced by centralized index.css with
Tailwind v4 @theme tokens, @layer components, and utility classes.
Game panel design system (gp-*) preserved as CSS components.
Inline styles in Settings/Login/MilestoneBar converted to Tailwind utilities.
sass removed from dependencies. Build clean, 53 tests pass.
2026-03-28 11:19:45 +01:00

26 lines
690 B
JavaScript
Executable File

import { Link } from "react-router-dom";
import Lottie from "react-lottie-player";
import animation404 from "../data/404-animation.json";
export default function NotFound() {
return (
<section>
<div className="containererror">
<Lottie
loop
animationData={animation404}
play
style={{ width: 260, height: 150 }}
/>
<h1>Oops! Il semble que la page n'existe pas.</h1>
<p className="message">
Nous vous conseillons de retourner à la page d'accueil.
</p>
<Link className="btn-return" to="/">
retourner à la page d'accueil
</Link>
</div>
</section>
);
}