import { useState, useEffect } from "react"; import styles from "./SplashComponent.module.scss"; import { StartUpProgressContainer } from "./start_up_progress_container/StartUpProgressContainer/"; import { DownloadModelsContainer } from "./download_models_container/DownloadModelsContainer/"; import MegaphoneSvg from "@images/megaphone.svg?react"; import XMarkSvg from "@images/cancel.svg?react"; import { appWindow } from "@tauri-apps/api/window"; export const SplashComponent = () => { return (
); }; const AnnouncementsContainer = () => { const labels = ["VRCT Real-Time Announcements", "VRCTからのお知らせ"]; const [currentLabelIndex, setCurrentLabelIndex] = useState(0); useEffect(() => { const labelInterval = setInterval(() => { setCurrentLabelIndex((prevIndex) => (prevIndex + 1) % labels.length); }, 6000); return () => clearInterval(labelInterval); }, [labels.length]); return ( ); }; const CloseButtonContainer = () => { const close = () => { appWindow.close(); }; return ( ); };