- Introducing MiniPerplx -
-- A minimalistic AI search engine designed to deliver answers in the simplest and most elegant way possible.✨ -
-diff --git a/app/page.tsx b/app/page.tsx index 72ef869..6a69563 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -512,7 +512,7 @@ const MobileNavItem: React.FC<{ href: string; children: React.ReactNode; onClick ) } -const EnhancedLandingPage: React.FC = () => { +const LandingPage: React.FC = () => { const { scrollYProgress } = useScroll() const opacity = useTransform(scrollYProgress, [0, 0.2], [1, 0]) const scale = useTransform(scrollYProgress, [0, 0.2], [1, 0.95]) @@ -556,6 +556,27 @@ const EnhancedLandingPage: React.FC = () => { { icon: Mic, title: "Translation & TTS", description: "Translate text and convert to speech with OpenAI TTS." }, ] + const containerVariants = { + hidden: { opacity: 0, y: 20 }, + visible: { + opacity: 1, + y: 0, + transition: { + duration: 0.5, + when: "beforeChildren", + staggerChildren: 0.1 + } + } + }; + + const itemVariants = { + hidden: { opacity: 0, y: 20 }, + visible: { + opacity: 1, + y: 0, + transition: { duration: 0.5 } + } + }; return (
- A minimalistic AI search engine designed to deliver answers in the simplest and most elegant way possible.✨ -
-