Spaces:
Sleeping
Sleeping
| # app.py | |
| import streamlit as st | |
| st.set_page_config(page_title="Mini Honoka Worldbuilder", layout="wide") | |
| st.title("🌍 Mini Honoka – AI Worldbuilder Toolkit") | |
| x = st.slider('Select a value') | |
| st.write(x, 'squared is', x * x) | |
| st.markdown(""" | |
| Welcome to **Mini Honoka** – the smart AI worldbuilding assistant for writers, RPG makers, and dreamers! | |
| > Try using the slider above — we'll be expanding this to a full world map interface soon! 🌐 | |
| """) | |