feat(admin): 제품 관리 — CRUD + 파일 업로드·제품 배정

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-12 00:20:48 +09:00
parent e713ebceee
commit d2a20c5cb7
5 changed files with 688 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
'use client';
import { useEffect, useState } from 'react';
import Link from 'next/link';
type PackTier = 'starter' | 'pro' | 'master';
@@ -155,6 +156,10 @@ export default function AdminPacksPage() {
<p className="text-slate-400 text-sm mt-0.5">
NAS + . 5GB / 4 .
</p>
<p className="text-amber-400/90 text-xs mt-2">
. {' '}
<Link href="/admin/products" className="underline hover:text-amber-300"> </Link> .
</p>
</div>
{/* 업로드 폼 */}