"use client"; import { motion } from "framer-motion"; import { ScrollReveal } from "@/components/scroll-reveal"; const story = [ { title: "发现优质资源", desc: "搜索、分类与推荐协同,让用户 3 秒定位所需软件。", badge: "Discover", }, { title: "透明化下载细节", desc: "版本、大小、更新日期、修改日志与安全标识完整可视化。", badge: "Trust", }, { title: "自然引导转化", desc: "公众号解锁、社群、VIP 与付费能力以产品化方式融入。", badge: "Convert", }, ]; export function HomeScrollStory() { return (

滚动叙事体验

{story.map((item, idx) => (

{item.badge}

{item.title}

{item.desc}

))}
); }