import { MembershipPlanForm } from "@/components/admin/MembershipPlanForm";

export default function NewMembershipPlanPage() {
  return (
    <div className="space-y-6">
      <h1 className="text-2xl font-bold">新增會員方案</h1>
      <MembershipPlanForm />
    </div>
  );
}