import { Input, Button, Tag } from 'antd'; import { SearchOutlined, CameraOutlined, ArrowRightOutlined, ThunderboltOutlined, SafetyCertificateOutlined, ClockCircleOutlined, } from '@ant-design/icons'; import { useNavigate } from 'react-router-dom'; import './Hero.css'; const recommendTags = ['活动', '医美', '科技', '包装', '直播', '邀请函']; const heroStats = [ { value: '24h', label: '持续更新' }, { value: '原图', label: '即时交付' }, { value: '在线', label: '支付下载' }, ]; const stageHighlights = [ { icon: , title: '热门原图', description: '按场景、风格和行业快速找图,减少反复沟通。', }, { icon: , title: '支付后交付', description: '下单、支付、下载一条链路走通,用户体验更顺。', }, { icon: , title: '最新上传', description: '设计师持续上新,支持详情页预览和作品编号追踪。', }, ]; const Hero = () => { const navigate = useNavigate(); const scrollToHotWorks = () => { document.getElementById('home-hot-works')?.scrollIntoView({ behavior: 'smooth', block: 'start', }); }; return (
图汇精选素材库

把灵感整理成 可直接下载的设计资产

原图、背景、电商图、活动物料统一归档,预览、支付、下载三步走通, 让客户从找图到拿到成品更省心。

} suffix={} />
推荐分类 {recommendTags.map((tag) => ( navigate(`/category/${tag}`)} > {tag} ))}
{heroStats.map((item) => (
{item.value} {item.label}
))}
本周趋势 精选专题

更像一个能直接成交的素材站,而不是简单图库

首页负责承接搜索意图,详情页负责转化下载动作,让用户一眼知道 “这里能找、能买、能下”。

高清原图 在线支付 作品详情页
{stageHighlights.map((item) => (
{item.icon}

{item.title}

{item.description}

))}
); }; export default Hero;