clearer headings

This commit is contained in:
andrzej 2024-06-25 12:20:10 +02:00
parent f2231ea24d
commit d5cac57485
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ export default async function Page() {
const genres = await getGenres() const genres = await getGenres()
return ( return (
<CreateContainer> <CreateContainer>
<CreateContainerHeader>Create Publication</CreateContainerHeader> <CreateContainerHeader>New publication</CreateContainerHeader>
<CreateContainerContent> <CreateContainerContent>
<CreateContainerDescription> <CreateContainerDescription>
Create a new entry for a publication i.e. a place you intend to submit to. Create a new entry for a publication i.e. a place you intend to submit to.

View File

@ -28,7 +28,7 @@ export default async function Page() {
} }
return ( return (
<CreateContainer> <CreateContainer>
<CreateContainerHeader>Create Story</CreateContainerHeader> <CreateContainerHeader>New story</CreateContainerHeader>
<CreateContainerContent> <CreateContainerContent>
<CreateContainerDescription>Make an entry for a new work of fiction i.e. a thing you intend to submit for publication.</CreateContainerDescription> <CreateContainerDescription>Make an entry for a new work of fiction i.e. a thing you intend to submit for publication.</CreateContainerDescription>
<StoryForm genres={genres} createStory={createStory} className="mt-6" /> <StoryForm genres={genres} createStory={createStory} className="mt-6" />