// WelcomePage.js import React,{useRef} from "react"; import "./WelcomePage.css"; const WelcomePage = ({ onGetStarted, isFullscreen, image, welcomingText, backgroundColor, textColor, onImageChange }) => { const fileInputRef = useRef(null); const handleImageClick = () => { fileInputRef.current.click(); }; return (