Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

106 Zeilen
3.9 KiB

  1. <template>
  2. <div>
  3. <!-- Hero -->
  4. <section class="relative overflow-hidden bg-white">
  5. <div class="absolute inset-0 bg-gradient-to-br from-indigo-50/60 via-white to-violet-50/40" />
  6. <div class="relative max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-20 sm:py-28 lg:py-36">
  7. <div class="max-w-3xl mx-auto text-center">
  8. <h1 class="text-4xl sm:text-5xl lg:text-6xl font-bold tracking-tight text-slate-900">
  9. 用 AI 打开
  10. <span class="text-indigo-500">创意</span>
  11. 之门
  12. </h1>
  13. <p class="mt-6 text-lg sm:text-xl text-slate-500 leading-relaxed max-w-2xl mx-auto">
  14. AI 问答、AI 绘画、AI 音乐、AI 取名、动漫头像 ——
  15. 一站式 AI 创作平台,让每个人都能轻松创作。
  16. </p>
  17. <div class="mt-10 flex flex-col sm:flex-row items-center justify-center gap-4">
  18. <NuxtLink
  19. to="/ai-name"
  20. class="w-full sm:w-auto inline-flex items-center justify-center px-8 py-3.5 text-base font-semibold text-white bg-indigo-500 hover:bg-indigo-600 rounded-xl shadow-sm hover:shadow-md transition-all duration-200 cursor-pointer"
  21. >
  22. 开始创作
  23. </NuxtLink>
  24. <NuxtLink
  25. to="/recharge"
  26. class="w-full sm:w-auto inline-flex items-center justify-center px-8 py-3.5 text-base font-semibold text-indigo-600 bg-indigo-50 hover:bg-indigo-100 rounded-xl transition-colors duration-200 cursor-pointer"
  27. >
  28. 查看套餐
  29. </NuxtLink>
  30. </div>
  31. </div>
  32. </div>
  33. </section>
  34. <!-- 功能卡片 -->
  35. <section class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-16 sm:py-20">
  36. <div class="text-center mb-12">
  37. <h2 class="text-2xl sm:text-3xl font-bold text-slate-900">AI 创作工具</h2>
  38. <p class="mt-3 text-slate-500">选择你需要的 AI 能力,开始创作之旅</p>
  39. </div>
  40. <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
  41. <NuxtLink
  42. v-for="tool in tools"
  43. :key="tool.title"
  44. :to="tool.to"
  45. class="group relative bg-white rounded-2xl p-6 shadow-sm border border-slate-100 hover:shadow-md hover:border-indigo-100 transition-all duration-300 cursor-pointer"
  46. >
  47. <div class="w-12 h-12 rounded-xl bg-indigo-50 flex items-center justify-center mb-4 group-hover:bg-indigo-100 transition-colors duration-200">
  48. <component :is="tool.icon" class="w-6 h-6 text-indigo-500" />
  49. </div>
  50. <h3 class="text-lg font-semibold text-slate-900 mb-2">{{ tool.title }}</h3>
  51. <p class="text-sm text-slate-500 leading-relaxed">{{ tool.desc }}</p>
  52. </NuxtLink>
  53. </div>
  54. </section>
  55. </div>
  56. </template>
  57. <script setup>
  58. useSeoMeta({
  59. title: '奇想宇宙 - AI 创作平台',
  60. description: 'AI 问答、AI 绘画、AI 音乐、AI 取名、动漫头像 —— 一站式 AI 创作平台',
  61. keywords: 'AI,人工智能,Midjourney,AI绘画,AI音乐,AI取名',
  62. })
  63. const tools = [
  64. {
  65. title: 'AI 取名',
  66. desc: '智能取名,结合姓氏、性别、出生日期,从诗经楚辞中精选好名字',
  67. to: '/ai-name',
  68. icon: 'div',
  69. },
  70. {
  71. title: 'AI 动漫头像',
  72. desc: '上传自拍,一键生成专属动漫风格头像,多种风格可选',
  73. to: '/anime-avatar',
  74. icon: 'div',
  75. },
  76. {
  77. title: 'AI 绘画',
  78. desc: '使用 Midjourney 生成高质量 AI 绘画作品,激发无限创意',
  79. to: '#',
  80. icon: 'div',
  81. },
  82. {
  83. title: 'AI 音乐',
  84. desc: 'AI 生成原创音乐,多种风格随心选择',
  85. to: '#',
  86. icon: 'div',
  87. },
  88. {
  89. title: 'AI 问答',
  90. desc: '智能问答助手,随时随地解答你的疑问',
  91. to: '#',
  92. icon: 'div',
  93. },
  94. {
  95. title: '更多工具',
  96. desc: '文本转语音、AI 装修设计等更多 AI 能力持续上线中',
  97. to: '#',
  98. icon: 'div',
  99. },
  100. ]
  101. </script>