🎉 init: 小龙的工作空间
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
"use client";
|
||||
import { Card } from "@/components/ui/Card";
|
||||
import { Input } from "@/components/ui/Input";
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<div className="space-y-4">
|
||||
<h1 className="text-xl font-bold text-gray-800">通讯录</h1>
|
||||
<Input placeholder="搜索同事..." />
|
||||
<div className="space-y-2">
|
||||
{["张三 · 技术部", "李四 · 产品部", "王五 · 设计部"].map((n, i) => (
|
||||
<Card key={i}><p className="text-sm text-gray-700">{n}</p></Card>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user