-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #859 from hxtree/feature/improve-hero
Update tests and fix grammar in readme
- Loading branch information
Showing
7 changed files
with
63 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,25 @@ | ||
import { Paper } from '@cats-cradle/design-system/dist/main'; | ||
import { Hero, Paper } from '@cats-cradle/design-system/dist/main'; | ||
import ArchetypeSelect from '../components/ArchetypeSelect'; | ||
import { BreadCrumbs } from '../components/Breadcrumbs'; | ||
|
||
export default function ArchetypePage() { | ||
return ( | ||
<> | ||
<Hero pageTier={2} image='/assets/clouds.jpg' | ||
breadcrumb={<BreadCrumbs/>} | ||
heading='Archetypes' | ||
lead="Archetypes serve as the fundamental blueprint for character sheets."> | ||
<p> They outline a character's abilities, potential, and constraints. | ||
Each character sheet draws inspiration from a designated archetype, | ||
shaping their possibilities and outlining the skills they can or cannot acquire. | ||
While an archetype does not detail everything, it plays a vital role in guiding | ||
both player and non-player character creation.</p> | ||
</Hero> | ||
<main className="container"> | ||
<BreadCrumbs/> | ||
<Paper elevation="1" className='p-5'> | ||
<h1>Archetypes</h1> | ||
<p> | ||
Archetypes serve as the fundamental blueprint for character sheets. They outline a character's abilities, potential, and constraints. Each character sheet draws inspiration from a designated archetype, shaping their possibilities and outlining the skills they can or cannot acquire. While an archetype does not detail everything, it plays a vital role in guiding both player and non-player character creation. | ||
</p> | ||
<ArchetypeSelect /> | ||
</Paper> | ||
</main> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,21 @@ | ||
import { Paper } from '@cats-cradle/design-system/dist/main'; | ||
import { Paper, Hero } from '@cats-cradle/design-system/dist/main'; | ||
import { BreadCrumbs } from '../components/Breadcrumbs'; | ||
|
||
export default function CharacterSheetsPage() { | ||
return ( | ||
<main className="container"> | ||
<BreadCrumbs/> | ||
<Paper elevation="1" className='p-5'> | ||
<h1>Character Sheets</h1> | ||
</Paper> | ||
</main> | ||
<> | ||
<Hero | ||
pageTier={2} | ||
image='/assets/clouds.jpg' | ||
breadcrumb={<BreadCrumbs/>} | ||
heading='Character Sheets' | ||
lead='Review characters per instance'> | ||
</Hero> | ||
<main className="container"> | ||
<Paper elevation="1" className='p-5'> | ||
Coming soon. | ||
</Paper> | ||
</main> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters