import React from 'react'; import { useNavigate } from 'react-router-dom'; import { TypewriterLoop } from '../components/animations/TextReveal'; import { ArrowRight, Sparkles, MousePointer2 } from 'lucide-react'; import { Logo } from '../components/ui/Logo'; const Welcome: React.FC = () => { const navigate = useNavigate(); const handleStart = () => { navigate('/auth'); }; return (
{/* High-Resolution Dynamic Background Decor - Mountain Night (Same as Greeting) */}
{/* Overlays - Darker for text legibility without boxes */}
{/* Massive Background Logo Watermark */}
{/* Main Content */}
{/* Interactive Logo Container */}
{/* Visual Cue for interaction */}
Tap to Start

Heritage in High Definition

{/* Clean Typography without glassy box */}

The Ultimate Nepali Companion for Culture, Health, and Excellence.

PROJECT RUDRAKSHA • v3.0

); }; export default Welcome;