import type React from "react"; import { Sparkles } from "lucide-react"; import NeoButton from "./NeoButton"; interface LandingScreenProps { isVisible: boolean; onLoad: () => void; playHoverSound?: () => void; } const LandingScreen: React.FC = ({ isVisible, onLoad, playHoverSound }) => { const transitionClass = isVisible ? "opacity-100" : "opacity-0 -translate-y-10 pointer-events-none"; return (

✨ Bedtime Story ✨
Generator

Craft magical tales in seconds.

Start Creating
); }; export default LandingScreen;