From c301dbd3c24db856e7571753ae27691e67438fe1 Mon Sep 17 00:00:00 2001 From: zetaloop Date: Wed, 25 Feb 2026 05:33:54 +0800 Subject: [PATCH] style(main): extend proto2 surfaces to remaining pages --- app/(main)/help/page.tsx | 4 ++-- app/(main)/post/[id]/page.tsx | 8 ++++---- app/(main)/post/new/page.tsx | 14 +++++++------- app/(main)/privacy/page.tsx | 4 ++-- app/(main)/terms/page.tsx | 4 ++-- app/(main)/user/[id]/page.tsx | 12 ++++++------ 6 files changed, 23 insertions(+), 23 deletions(-) diff --git a/app/(main)/help/page.tsx b/app/(main)/help/page.tsx index fb15fa3..87429b4 100644 --- a/app/(main)/help/page.tsx +++ b/app/(main)/help/page.tsx @@ -4,8 +4,8 @@ import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" export default function HelpPage() { return (
-

帮助中心

- +

帮助中心

+ 常见流程 diff --git a/app/(main)/post/[id]/page.tsx b/app/(main)/post/[id]/page.tsx index 628d5e8..c432d5e 100644 --- a/app/(main)/post/[id]/page.tsx +++ b/app/(main)/post/[id]/page.tsx @@ -21,7 +21,7 @@ export default async function PostDetailPage({ params }: { params: Promise<{ id: const linkedPlayer = linkedOrder ? getPlayerById(linkedOrder.playerId) : null return ( -
+
- +
@@ -52,13 +52,13 @@ export default async function PostDetailPage({ params }: { params: Promise<{ id:
-

{post.title}

+

{post.title}

{post.content}

{post.images.length > 0 && (
{post.images.map((img) => ( -
+
帖子图片
))} diff --git a/app/(main)/post/new/page.tsx b/app/(main)/post/new/page.tsx index e9f182f..02d657c 100644 --- a/app/(main)/post/new/page.tsx +++ b/app/(main)/post/new/page.tsx @@ -92,7 +92,7 @@ export default function NewPostPage() { } return ( -
+
- + - 发布帖子 + 发布帖子
@@ -154,14 +154,14 @@ export default function NewPostPage() { ))} -
+

预览:

{selectedQuotePostId ? ( (() => { const post = posts.find((p) => p.id === selectedQuotePostId) if (!post) return

未找到帖子

return ( -
+

{post.title}

{post.content} @@ -201,7 +201,7 @@ export default function NewPostPage() { {Array.from({ length: imageCount }).map((_, i) => (

图片