Enhance main page component with new styling and layout

This commit is contained in:
2025-03-10 14:35:04 +01:00
parent 84b776c9d1
commit 23c8165df8
2 changed files with 29 additions and 3 deletions

View File

@@ -13,3 +13,8 @@ body {
color-scheme: dark; 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);
}

View File

@@ -1,8 +1,29 @@
import "./app.css";
export function Welcome() { export function Welcome() {
return ( return (
<div> <div className="bg-gray-800">
<h1 className="text-3xl text-center">Welcome to Aindustries' casino</h1> <h1 className="text-white text-3xl text-center">
<p className="text-center">Mind that gambling isn't that dangerous</p> Welcome to Aindustries' casino
</h1>
<p className="text-center text-white">
Mind that gambling isn't that dangerous
</p>
<div className="w-full h-100 bg-gray-500 mx-auto flex items-center justify-center mt-10">
<div className="w-35 h-18 bg-purple-500 rounded-lg flex items-center justify-center mt-60 mx-1.25">
<h1 className="text-white text-2xl glow-text">PRICE-</h1>
</div>
<div className="w-40 h-20 bg-green-500 rounded-lg flex items-center justify-center mt-60 mx-1.25">
<h1 className="text-white text-4xl glow-text">ROLL</h1>
</div>
<div className="w-35 h-18 bg-blue-500 rounded-lg flex items-center justify-center mt-60 mx-1.25">
<h1 className="text-white text-2xl glow-text">CHANCE+</h1>
</div>
<h1 className="text-white text-xl">Cost per roll :</h1>
</div>
</div> </div>
); );
} }