import React, { useState } from 'react'; // 自定义SVG图标 const SearchIcon = () => ( ); const PlayCircleIcon = () => ( ); const ZapIcon = () => ( ); const ToolIcon = () => ( ); const TrendingUpIcon = () => ( ); const BookOpenIcon = () => ( ); const PieChartIcon = () => ( ); const HERO_CATEGORIES = [ { icon: , title: 'YouTube创作', description: '全方位创作指南' }, { icon: , title: 'TikTok运营', description: '快速增长秘籍' }, { icon: , title: '创作工具', description: '高效制作利器' } ]; const FEATURED_RESOURCES = [ { title: 'YouTube算法解析', category: '平台运营', tags: ['SEO', '推荐算法'] }, { title: 'TikTok内容策略', category: '内容创作', tags: ['趋势', '病毒式传播'] }, { title: '短视频剪辑技巧', category: '内容创作', tags: ['剪辑', '特效'] } ]; const CreatorNavModernHomepage = () => { const [searchTerm, setSearchTerm] = useState(''); return (
{/* 顶部hero区域 */}

创作者导航站 CreatorNav

为YouTube和TikTok内容创作者提供最全面的资源和工具

{/* 搜索栏 */}
setSearchTerm(e.target.value)} className="w-full pl-12 pr-4 py-3 rounded-full text-gray-800 focus:ring-2 focus:ring-blue-300" />
{/* 快速入口 */}
{HERO_CATEGORIES.map((category, index) => (
{category.icon}

{category.title}

{category.description}

))}
{/* 精选资源 */}

精选资源

更多资源
{FEATURED_RESOURCES.map((resource, index) => (
{resource.category}

{resource.title}

{resource.tags.map(tag => ( {tag} ))}
))}
{/* 平台资源导航 */}

平台资源导航

{[ { icon: , title: 'YouTube运营' }, { icon: , title: '内容创作' }, { icon: , title: '数据分析' }, { icon: , title: '创作工具' } ].map((nav, index) => (
{nav.icon}

{nav.title}

))}
{/* 页脚 */}
); }; export default CreatorNavModernHomepage;