File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change 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" ;
15import type { Metadata } from "next" ;
26
37export const metadata : Metadata = {
48 title : "經驗分享" ,
59} ;
610
711export 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}
You can’t perform that action at this time.
0 commit comments