refs #739: align Smilegate with application repository layout
This commit is contained in:
@@ -0,0 +1 @@
|
||||
"""Presentation modules for the Smilegate demo."""
|
||||
@@ -0,0 +1,28 @@
|
||||
"""Blank presentation shell.
|
||||
|
||||
No authentication, data access, MCP call, persistence, or customer text belongs
|
||||
in this module. It exists only to prove the minimal Streamlit runtime path.
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
||||
|
||||
def render_blank_shell(st: Any) -> None:
|
||||
"""Render the intentionally empty first review screen."""
|
||||
st.set_page_config(page_title="Smilegate Demo", layout="wide")
|
||||
st.markdown(
|
||||
"""
|
||||
<style>
|
||||
[data-testid="stHeader"],
|
||||
[data-testid="stToolbar"],
|
||||
#MainMenu,
|
||||
footer { display: none; }
|
||||
[data-testid="stAppViewContainer"],
|
||||
.stApp { background: #ffffff; }
|
||||
.block-container { padding: 0; max-width: none; }
|
||||
</style>
|
||||
""",
|
||||
unsafe_allow_html=True,
|
||||
)
|
||||
Reference in New Issue
Block a user