11 lines
336 B
TypeScript
11 lines
336 B
TypeScript
export function PlaceholderPage({ title }: { title: string }) {
|
|
return (
|
|
<div className="flex items-center justify-center h-full">
|
|
<div className="text-center">
|
|
<h1 className="text-2xl font-semibold text-gray-200">{title}</h1>
|
|
<p className="mt-2 text-gray-500">Coming soon</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|