feat: add create-character page component
Co-authored-by: aider (ollama/qwen2.5-coder:7b) <aider@aider.chat>
This commit is contained in:
@@ -0,0 +1,15 @@
|
|||||||
|
import React from "react";
|
||||||
|
import CharacterForm from "@/components/CharacterForm";
|
||||||
|
|
||||||
|
const CreateCharacterPage: React.FC = () => {
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col h-screen">
|
||||||
|
<main className="flex-1 flex flex-col items-center justify-center gap-6">
|
||||||
|
<h1>Create a New Character</h1>
|
||||||
|
<CharacterForm />
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default CreateCharacterPage;
|
||||||
Reference in New Issue
Block a user