"use client" import { useEffect, useState } from "react" import Image from "next/image" export function RevealScreen() { const [isVisible, setIsVisible] = useState(true) const [isAnimating, setIsAnimating] = useState(false) useEffect(() => { // Start fade out animation after 2 seconds const timer = setTimeout(() => { setIsAnimating(true) // Remove the component after animation completes setTimeout(() => { setIsVisible(false) }, 500) }, 2000) return () => clearTimeout(timer) }, []) if (!isVisible) return null return (
METI Logo
) }