From 23c8165df89c26a58d1e1379d85dbc3569c3f182 Mon Sep 17 00:00:00 2001 From: "theo.pector" Date: Mon, 10 Mar 2025 14:35:04 +0100 Subject: [PATCH] Enhance main page component with new styling and layout --- app/app.css | 5 +++++ app/index.tsx | 27 ++++++++++++++++++++++++--- 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/app/app.css b/app/app.css index 99345d8..f20c92b 100644 --- a/app/app.css +++ b/app/app.css @@ -13,3 +13,8 @@ body { color-scheme: dark; } } + +.glow-text { + text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), + 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4); +} diff --git a/app/index.tsx b/app/index.tsx index 98cd548..9469682 100644 --- a/app/index.tsx +++ b/app/index.tsx @@ -1,8 +1,29 @@ +import "./app.css"; + export function Welcome() { return ( -
-

Welcome to Aindustries' casino

-

Mind that gambling isn't that dangerous

+
+

+ Welcome to Aindustries' casino +

+

+ Mind that gambling isn't that dangerous +

+ +
+
+

PRICE-

+
+ +
+

ROLL

+
+ +
+

CHANCE+

+
+

Cost per roll :

+
); }