Skip to content

Commit 6feb867

Browse files
committed
feat: comments WIP page
1 parent 536e71b commit 6feb867

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

app/(app)/comments/page.tsx

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,27 @@
1+
import PageHeader from "@/components/page-header";
2+
import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert";
3+
import { Button } from "@/components/ui/button";
4+
import { AlertCircle } from "lucide-react";
15
import type { Metadata } from "next";
26

37
export const metadata: Metadata = {
48
title: "經驗分享",
59
};
610

711
export default function CommentsPage() {
8-
return <div>CommentsPage</div>;
12+
return (
13+
<section className="space-y-6">
14+
<PageHeader title="經驗分享" description="分享您的學習心得和經驗。" />
15+
16+
<Alert>
17+
<AlertCircle />
18+
<AlertTitle>功能正在開發</AlertTitle>
19+
<AlertDescription>
20+
目前尚未上線分享學習經驗的功能。在服務上線之前,歡迎提供您對這個功能的意見!
21+
</AlertDescription>
22+
</Alert>
23+
24+
<Button variant="outline" id="comment-feedback-button">提供意見</Button>
25+
</section>
26+
);
927
}

0 commit comments

Comments
 (0)