discover/page.tsx

discover/page.tsx

基本信息

  • 类型: Next.js 页面 (Server Component)
  • 路径: ./src/app/discover/page.tsx

功能描述

发现页面,展示平台上的热门和精选 Prompt,支持结构化数据标记用于 SEO。

路由

  • 路径: /discover
  • 参数: 无

依赖导入

  • @/components/prompts/discovery-prompts - 发现 Prompt 组件
  • @/components/seo/structured-data - 结构化数据组件
  • @/lib/db - Prisma 数据库客户端

主要功能

  • 从数据库获取热门 Prompt(按赞数排序,前10条)
  • 生成 ItemList 结构化数据用于 SEO
  • 生成面包屑导航结构化数据
  • 渲染发现内容组件

SEO

  • title: Discover - Popular Prompts
  • description: 发现社区中最受欢迎的 AI Prompts
  • 结构化数据:

- ItemList: 热门 Prompt 列表 - Breadcrumb: 首页 > 发现

← 返回目录