feature/adds-admin-add-article #1

Merged
HideyoshiNakazone merged 21 commits from feature/adds-admin-add-article into main 2026-04-11 04:30:42 +00:00
Showing only changes of commit 7943527106 - Show all commits

View File

@@ -2,8 +2,8 @@ import CreateArticleForm from '@/ui/components/internal/create-article-form';
const AdminPage = async () => {
return (
<div className='container mx-auto py-10 min-h-3/4'>
<div className='h-full rounded-lg border border-border bg-card p-6'>
<div className='container mx-auto px-4 py-10 min-h-3/4'>
<div className='rounded-lg border border-border p-6'>
<h2 className='mb-6 text-2xl font-bold'>Create New Article</h2>
<CreateArticleForm />
</div>