feat(tutorials): add video training academy management with YouTube parser and live preview

This commit is contained in:
mstfyldz
2026-08-22 13:49:00 +03:00
parent 2d149f1178
commit 7f690cc6d3
29 changed files with 2476 additions and 1034 deletions
+19
View File
@@ -0,0 +1,19 @@
import Link from 'next/link'
import { listCustomerOptions } from '@/lib/supabaseAdmin'
import NewLicenseForm from './NewLicenseForm'
export default async function NewLicensePage() {
const customers = await listCustomerOptions()
return (
<div className="space-y-6 max-w-2xl">
<div>
<Link href="/admin/licenses" className="text-sm text-gray-500 hover:text-gray-900 dark:hover:text-white"> Lisanslar</Link>
<h2 className="text-2xl font-bold tracking-tight text-gray-900 dark:text-white mt-2">Yeni Lisans Oluştur</h2>
<p className="text-gray-500 dark:text-gray-400 mt-1">Satış yaptığınızda burada bir lisans anahtarı üretin ve müşteriye iletin.</p>
</div>
<NewLicenseForm customers={customers} />
</div>
)
}