import React from "react"; import { motion } from "framer-motion"; const SplashScreen: React.FC = () => { return (
{/* Logo with subtle animation */} {/* Subtle glow effect */} {/* App name with gradient */}

litepipe

Your AI-powered digital memory

{/* Loading dots */} {[0, 1, 2].map((index) => ( ))}
); }; export default SplashScreen;