mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
Font for form headings matches new design
This commit is contained in:
@@ -104,7 +104,15 @@ const EditQuestPage: React.FC<Props> = ({
|
||||
|
||||
return (
|
||||
<PageContainer>
|
||||
<Heading mb={4}>Edit Quest</Heading>
|
||||
<Heading
|
||||
as="h1"
|
||||
fontFamily="body"
|
||||
fontWeight="600"
|
||||
fontSize={{ base: '4xl', md: '6xl' }}
|
||||
mb={5}
|
||||
>
|
||||
Edit Quest
|
||||
</Heading>
|
||||
|
||||
<QuestForm
|
||||
{...{ roleChoices, onSubmit, guilds, skillChoices }}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { MetaHeading, useToast } from '@metafam/ds';
|
||||
import { Heading, useToast } from '@metafam/ds';
|
||||
import { PageContainer } from 'components/Container';
|
||||
import { CreateQuestFormInputs, QuestForm } from 'components/Quest/QuestForm';
|
||||
import { HeadComponent } from 'components/Seo';
|
||||
@@ -91,7 +91,15 @@ const CreateQuestPage: React.FC<Props> = ({
|
||||
description="Create a quest for MetaGame."
|
||||
url="https://metagame.wtf/quest/create"
|
||||
/>
|
||||
<MetaHeading mb={4}>New Quest</MetaHeading>
|
||||
<Heading
|
||||
as="h1"
|
||||
fontFamily="body"
|
||||
fontWeight="600"
|
||||
fontSize={{ base: '4xl', md: '6xl' }}
|
||||
mb={5}
|
||||
>
|
||||
New Quest
|
||||
</Heading>
|
||||
|
||||
<QuestForm
|
||||
{...{ guilds, skillChoices, onSubmit, roleChoices }}
|
||||
|
||||
Reference in New Issue
Block a user