feat:v1.0.0

This commit is contained in:
liqupan
2026-02-09 21:54:32 +08:00
parent 8f19377517
commit 68d25581e8
49 changed files with 1522 additions and 528 deletions

View File

@@ -17,7 +17,7 @@ export default function Characters() {
});
if (error) {
return <div>Error loading characters: {(error as Error).message}</div>;
return <div>{(error as Error).message}</div>;
}
return (
@@ -33,16 +33,16 @@ export default function Characters() {
<Main className='flex flex-1 flex-col gap-4 sm:gap-6'>
<div className='flex flex-wrap items-end justify-between gap-2'>
<div>
<h2 className='text-2xl font-bold tracking-tight'>Characters</h2>
<h2 className='text-2xl font-bold tracking-tight'></h2>
<p className='text-muted-foreground'>
Manage your AI characters and their configurations.
AI
</p>
</div>
<CharactersPrimaryButtons />
</div>
{isLoading ? (
<div>Loading...</div>
<div>...</div>
) : (
<CharactersTable data={characters || []} />
)}