Update app.py
Browse files
app.py
CHANGED
|
@@ -9,8 +9,8 @@ ASSETS = BASE_DIR / "assets" # -> Landing_Page/assets/
|
|
| 9 |
|
| 10 |
# ========= CONTROLS =========
|
| 11 |
HERO_LOGO_SIZE = 170 # px (top company logo size)
|
| 12 |
-
TOP_SPACER =
|
| 13 |
-
CARD_THUMB_HEIGHT =
|
| 14 |
BUTTON_TEXT = "Click to Run APP"
|
| 15 |
OPEN_IN_NEW_TAB = False # True = open app in new tab
|
| 16 |
|
|
@@ -139,12 +139,14 @@ def app_card(app: dict) -> str:
|
|
| 139 |
|
| 140 |
st.markdown("<div class='grid'>" + app_card(APP1) + app_card(APP2) + "</div>", unsafe_allow_html=True)
|
| 141 |
|
| 142 |
-
#
|
|
|
|
|
|
|
| 143 |
st.markdown("""
|
| 144 |
<br><br><br>
|
| 145 |
<hr>
|
| 146 |
<div style='text-align:center;color:#6b7280;font-size:1.0em;'>
|
| 147 |
© 2025 Smart Thinking AI-Solutions Team. All rights reserved.<br>
|
| 148 |
-
|
| 149 |
</div>
|
| 150 |
-
""", unsafe_allow_html=True)
|
|
|
|
| 9 |
|
| 10 |
# ========= CONTROLS =========
|
| 11 |
HERO_LOGO_SIZE = 170 # px (top company logo size)
|
| 12 |
+
TOP_SPACER = 160 # px (extra top padding so logo never looks clipped)
|
| 13 |
+
CARD_THUMB_HEIGHT = 85 # px (image height inside each card)
|
| 14 |
BUTTON_TEXT = "Click to Run APP"
|
| 15 |
OPEN_IN_NEW_TAB = False # True = open app in new tab
|
| 16 |
|
|
|
|
| 139 |
|
| 140 |
st.markdown("<div class='grid'>" + app_card(APP1) + app_card(APP2) + "</div>", unsafe_allow_html=True)
|
| 141 |
|
| 142 |
+
# =========================
|
| 143 |
+
# Footer
|
| 144 |
+
# =========================
|
| 145 |
st.markdown("""
|
| 146 |
<br><br><br>
|
| 147 |
<hr>
|
| 148 |
<div style='text-align:center;color:#6b7280;font-size:1.0em;'>
|
| 149 |
© 2025 Smart Thinking AI-Solutions Team. All rights reserved.<br>
|
| 150 |
+
Website: <a href="https://smartthinking.com.sa" target="_blank" rel="noopener noreferrer">smartthinking.com.sa</a>
|
| 151 |
</div>
|
| 152 |
+
""", unsafe_allow_html=True)
|