1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
| import { Page, Block, HeroSection, FeaturesSection, TestimonialsSection, PricingSection, CtaSection, FooterSection } from '@/components/block';
export default function LandingPage() { return ( <Page> {/* 英雄区域 */} <HeroSection title="打造现代 Web 应用" subtitle="使用 shadcn/ui 和 Blocks 快速构建美观、可访问的用户界面" ctaText="开始使用" ctaLink="/dashboard" secondaryCtaText="了解更多" secondaryCtaLink="/features" />
{/* 特性展示 */} <FeaturesSection title="核心功能" description="专为现代 Web 应用设计的功能特性" features={[ { title: "高性能", description: "优化的渲染性能和用户体验", icon: "⚡" }, { title: "可访问性", description: "遵循 WCAG 标准,支持键盘导航", icon: "♿" }, { title: "响应式设计", description: "适配各种屏幕尺寸和设备", icon: "📱" } ]} />
{/* 客户评价 */} <TestimonialsSection testimonials={[ { name: "张三", role: "前端开发", content: "使用 shadcn/ui 后,我们的开发效率提升了50%", avatar: "/avatars/1.png" }, { name: "李四", role: "产品经理", content: "用户界面的一致性得到了很大改善", avatar: "/avatars/2.png" } ]} />
{/* 定价 */} <PricingSection plans={[ { name: "基础版", price: "免费", description: "适合个人开发者", features: ["最多3个项目", "基础组件", "社区支持"] }, { name: "专业版", price: "¥99/月", description: "适合小团队", features: ["无限项目", "高级组件", "优先支持", "自定义域名"], highlight: true }, { name: "企业版", price: "¥299/月", description: "适合大型团队", features: ["SAML SSO", "专属支持", "定制开发"] } ]} />
{/* 行动号召 */} <CtaSection title="准备好开始了吗?" subtitle="立即注册开始构建你的应用" ctaText="免费试用" ctaLink="/register" />
{/* 页脚 */} <FooterSection links={[ { name: "关于我们", href: "/about" }, { name: "联系方式", href: "/contact" }, { name: "隐私政策", href: "/privacy" } ]} copyright="© 2024 公司名称. 保留所有权利." /> </Page> ); }
|