import { Box, Typography, Button, useTheme, useMediaQuery, } from "@mui/material"; import { useNavigate } from "react-router-dom"; import { useSoundSystem } from "../contexts/SoundContext"; import { motion } from "framer-motion"; import { GameNavigation } from "../components/GameNavigation"; import { StyledText } from "../components/StyledText"; import CallSplitOutlinedIcon from "@mui/icons-material/CallSplitOutlined"; import CreateOutlinedIcon from "@mui/icons-material/CreateOutlined"; export function Tutorial() { const navigate = useNavigate(); const { playSound } = useSoundSystem(); const theme = useTheme(); const isMobile = useMediaQuery(theme.breakpoints.down("sm")); const handleStartGame = () => { playSound("page"); navigate("/game"); }; return ( How to play Each story takes you on a journey through a unique universe.

At every step, you will choose between two different options. until you reach the end of the story

Make a choice OR Write your own
); } export default Tutorial;