개발환경 변경 및 설명 추가

This commit is contained in:
comicgum
2026-09-16 13:35:29 +09:00
parent d1e230eb6a
commit ef277abe70
49 changed files with 1176 additions and 236 deletions
@@ -0,0 +1,11 @@
import ChangeInfoForm from "@/components/auth/ChangeInfoForm";
import { Metadata } from "next";
export const metadata: Metadata = {
title: "계정정보 변경",
description: "계정정보 변경",
};
export default function ChangeInfo() {
return <ChangeInfoForm />;
}