-
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.
feat: add character sheet page (#774)
Signed-off-by: hxtree <[email protected]>
- Loading branch information
Showing
7 changed files
with
23 additions
and
48 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,19 +1,13 @@ | ||
import { Container } from '@cats-cradle/design-system/dist/main'; | ||
import ArchetypeSelect from '../components/ArchetypeSelect'; | ||
|
||
export default function ArchetypePage() { | ||
return ( | ||
<> | ||
<main> | ||
<div> | ||
<Container> | ||
<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 /> | ||
</Container> | ||
</div> | ||
<main className="container"> | ||
<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 /> | ||
</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,14 +1,7 @@ | ||
import styles from '../src/app/page.module.css'; | ||
import { Container } from '@cats-cradle/design-system/dist/main'; | ||
|
||
export default function CharacterSheetPage() { | ||
export default function CharacterSheetsPage() { | ||
return ( | ||
<main className={styles.main}> | ||
<div className={styles.description}> | ||
<Container> | ||
<h1>Character Sheets</h1> | ||
</Container> | ||
</div> | ||
<main className="container"> | ||
<h1>Character Sheets</h1> | ||
</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,20 +1,15 @@ | ||
import { Container } from '@cats-cradle/design-system/dist/main'; | ||
import { DiceAnalyzer } from '../components/DiceAnalyzer'; | ||
|
||
export default function DicePage() { | ||
return ( | ||
<main> | ||
<div> | ||
<Container> | ||
<h1>Dice Notation Analyzer</h1> | ||
<p> | ||
Determine the appropriate dice notation for skill set rolls and | ||
visualizes the impact of luck. Gain valuable insights into | ||
chance's influence on game play outcomes. | ||
</p> | ||
<DiceAnalyzer /> | ||
</Container> | ||
</div> | ||
<main className="container"> | ||
<h1>Dice Notation Analyzer</h1> | ||
<p> | ||
Determine the appropriate dice notation for skill set rolls and | ||
visualizes the impact of luck. Gain valuable insights into | ||
chance's influence on game play outcomes. | ||
</p> | ||
<DiceAnalyzer /> | ||
</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,15 +1,7 @@ | ||
import { Container } from '@cats-cradle/design-system/dist/main'; | ||
|
||
export default function HomePage() { | ||
return ( | ||
<> | ||
<main> | ||
<div> | ||
<Container> | ||
<h1>Game Master Portal</h1> | ||
</Container> | ||
</div> | ||
<main className="container"> | ||
<h1>Game Master Portal</h1> | ||
</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