dino_landing_page/public/game.html
2025-08-17 19:42:53 +05:30

69 lines
2.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dino Game - Unity Export</title>
<style>
body {
margin: 0;
padding: 0;
background: #87CEEB;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: Arial, sans-serif;
}
.game-container {
text-align: center;
background: white;
padding: 2rem;
border-radius: 1rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
max-width: 500px;
}
.dino-placeholder {
font-size: 8rem;
margin-bottom: 1rem;
}
.instructions {
color: #666;
line-height: 1.6;
}
.highlight {
color: #2563eb;
font-weight: bold;
}
</style>
</head>
<body>
<div class="game-container">
<div class="dino-placeholder">🦖</div>
<h1>Dino Game</h1>
<div class="instructions">
<p>This is a placeholder for your Unity game export.</p>
<p>To integrate your actual game:</p>
<ol style="text-align: left; display: inline-block;">
<li>Export your Unity game to WebGL</li>
<li>Replace this file with your game's <span class="highlight">index.html</span></li>
<li>Ensure your game works in an iframe</li>
<li>Test the integration</li>
</ol>
<p style="margin-top: 1rem;">
<strong>Current Status:</strong>
<span style="color: #059669;">✅ Payment Confirmed</span>
</p>
<p style="margin-top: 1rem;">
<strong>Game Ready:</strong>
<span style="color: #dc2626;">⏳ Waiting for Unity Export</span>
</p>
</div>
</div>
</body>
</html>