import { useRef } from "react"; import MainBody from "../components/MainBody"; // Section components import Hero from "../components/landing/Hero"; import ControlLED from "../components/landing/ControlLED"; import LunarImg from "../assets/img/ocs/lunar-oc.png"; import ControlNav from "../data/control-navigation.json"; import ControlRgbLed from "../components/landing/ControlRgbLed"; import ControlPiezo from "../components/landing/ControlPiezo"; import ControlPhotoresistor from "../components/landing/ControlPhotoresistor"; import ControlServo from "../components/landing/ControlServo"; import Closing from "../components/landing/Closing"; import Footer from "../components/Footer"; import ControlPiezoMusicEditor from "../components/landing/ControlPiezoMusicEditor"; function MainPage () { const led = useRef(null); const rgbLed = useRef(null); const piezo = useRef(null); const servo = useRef(null); const photoresistor = useRef(null) return (<>