Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -8,11 +8,11 @@ BASE_DIR = Path(__file__).parent # -> Landing_Page/
|
|
| 8 |
ASSETS = BASE_DIR / "assets" # -> Landing_Page/assets/
|
| 9 |
|
| 10 |
# ========= CONTROLS (tweak these) =========
|
| 11 |
-
HERO_LOGO_SIZE =
|
| 12 |
-
TOP_SPACER =
|
| 13 |
CARD_WIDTH = 300 # px (fixed width per card on desktop)
|
| 14 |
-
CARD_THUMB_HEIGHT =
|
| 15 |
-
GRID_GAP =
|
| 16 |
BUTTON_TEXT = "Click to Run APP"
|
| 17 |
OPEN_IN_NEW_TAB = False # True = open links in a new tab
|
| 18 |
|
|
|
|
| 8 |
ASSETS = BASE_DIR / "assets" # -> Landing_Page/assets/
|
| 9 |
|
| 10 |
# ========= CONTROLS (tweak these) =========
|
| 11 |
+
HERO_LOGO_SIZE = 180 # px (top company logo size)
|
| 12 |
+
TOP_SPACER = 120 # px (breathing room above hero; raise if the logo looks "trimmed")
|
| 13 |
CARD_WIDTH = 300 # px (fixed width per card on desktop)
|
| 14 |
+
CARD_THUMB_HEIGHT = 180 # px (image area inside each card)
|
| 15 |
+
GRID_GAP = 100 # px (space between the cards)
|
| 16 |
BUTTON_TEXT = "Click to Run APP"
|
| 17 |
OPEN_IN_NEW_TAB = False # True = open links in a new tab
|
| 18 |
|