Spaces:
Sleeping
Sleeping
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Dashboard - Biryani Hub</title> | |
<style> | |
/* General Body Styling */ | |
body { | |
font-family: Arial, sans-serif; | |
background-color: #f0f0f0; | |
margin: 0; | |
padding: 0; | |
} | |
/* Container for the dashboard content */ | |
.dashboard-container { | |
max-width: 900px; | |
margin: 50px auto; | |
padding: 20px; | |
background-color: #fff; | |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | |
border-radius: 8px; | |
text-align: center; | |
} | |
/* Heading Style */ | |
h1 { | |
font-size: 2.5rem; | |
color: #333; | |
margin-bottom: 20px; | |
} | |
/* Paragraph Style */ | |
p { | |
font-size: 1.2rem; | |
color: #666; | |
margin-bottom: 30px; | |
} | |
/* Link Style */ | |
a { | |
text-decoration: none; | |
color: #4CAF50; | |
font-weight: bold; | |
font-size: 1.2rem; | |
transition: color 0.3s; | |
} | |
a:hover { | |
color: #45a049; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="dashboard-container"> | |
<h1>Welcome to the Dashboard</h1> | |
<p>This is your user dashboard where you can access various features.</p> | |
<a href="/menu">Go to Menu</a> | |
</div> | |
</body> | |
</html> | |