import React, { useEffect, useState } from 'react' import Styles from "./TutorialPopup.module.scss" import useStore from '@/lib/store' export default function TutorialPopup() { const tutorial = useStore((s)=>s.tutorial) return (

Welcome to Celestia

Navigate, explore, and search the stars and constellations.

Pan
Right-click and drag to move around the scene
Zoom
Use mouse scroll wheel to zoom in and out
Rotate
Left-click and drag to rotate the view
Forward/backward
Press W/D to move forward and backward.
Search
Use the search box in the bottom-right corner to find specific stars
) }