9 lines
253 B
TypeScript
9 lines
253 B
TypeScript
export default function SearchPage() {
|
|
return (
|
|
<div className="container mx-auto py-8 px-4">
|
|
<h1 className="text-2xl font-bold">搜索</h1>
|
|
<p className="mt-2 text-muted-foreground">搜索打手、店铺和服务</p>
|
|
</div>
|
|
)
|
|
}
|