playreel/frontend/components/disabled-notice.tsx
2026-09-08 15:00:42 +09:00

15 lines
445 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Link from "next/link";
/** 꺼둔 화면의 자리. lib/features.ts 에서 켠다. */
export default function DisabledNotice({ title, backHref = "/" }: {
title: string; backHref?: string;
}) {
return (
<div>
<Link href={backHref} className="btn-back">‹ 뒤로가기</Link>
<h1 className="page-title">{title}</h1>
<p className="page-subtitle">이 화면은 아직 열지 않았습니다.</p>
</div>
);
}