import { Box, Typography, Button, Paper, IconButton, Tooltip, } from "@mui/material"; import { useNavigate } from "react-router-dom"; import PlayArrowIcon from "@mui/icons-material/PlayArrow"; import ArrowBackIcon from "@mui/icons-material/ArrowBack"; import { usePageSound } from "../hooks/usePageSound"; import { motion } from "framer-motion"; import { StyledText } from "../components/StyledText"; import { BookPages } from "../components/BookPages"; export function Tutorial() { const navigate = useNavigate(); const playPageSound = usePageSound(); const handleStartGame = () => { playPageSound(); navigate("/game"); }; const handleBack = () => { playPageSound(); navigate("/"); }; return ( {/* Pages d'arrière-plan */} {/* Page principale */} {/* Section Synopsis */} Synopsis Sarah, an AI hunter traveling through parallel worlds. Your mission is to track down an AI that moves from world to world to avoid destruction.`} /> world presents its own challenges and obstacles. You must make crucial decisions to advance in your quest.`} /> choice you make can alter the course of your pursuit. Time is of the essence, and every action counts in this thrilling adventure.`} /> {/* Section How to Play */} How to play ); } export default Tutorial;