Cool looking multipage app about d&d information, main page should be a CTA to convice non-players to start playing, remarking the use of imagination to become whoever you want to be. Next pages should be "Races and classes", "Basic rules" (short compilation of basic rules), "Combat actions" (short compilation), "bestiary" (Short compilations of monsters and their stats".
Drop files here
or click to upload
import streamlit as st
st.title("Discover Dungeons & Dragons")
st.markdown("### Unleash Your Imagination!")
st.write("Have you ever wanted to embark on epic adventures, become a hero, or create your own story? With Dungeons & Dragons, you can turn your imagination into reality!")
st.write("Gather your friends, roll some dice, and dive into a world where you can be anyone you want to be. Whether you want to be a mighty warrior, a cunning rogue, or a wise wizard, the choice is yours!")
st.write("Ready to start? Let's explore the adventure that awaits you!")
st.page_link("pages/races_and_classes.py", label="Races and Classes", icon="🧙♂️")
st.page_link("pages/basic_rules.py", label="Basic Rules", icon="📜")
st.page_link("pages/combat_actions.py", label="Combat Actions", icon="⚔️")
st.page_link("pages/bestiary.py", label="Bestiary", icon="🐉")
Hi! I can help you with any questions about Streamlit and Python. What would you like to know?