-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathride-01.html
More file actions
80 lines (79 loc) · 3.44 KB
/
Copy pathride-01.html
File metadata and controls
80 lines (79 loc) · 3.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RC Cars Dashboard</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Poppins', sans-serif;
background-color: #000;
color: #fff;
}
.primary-color {
background-color: #FF009D;
}
.secondary-color {
background-color: #8900FF;
}
.sidebar-link:hover {
background-color: #FF009D;
transition: background-color 0.3s;
}
.button:hover {
background-color: #8900FF;
transition: background-color 0.3s;
}
</style>
</head>
<body class="flex flex-col min-h-screen">
<div class="flex flex-row flex-1">
<!-- Sidebar -->
<div class="w-64 flex flex-col bg-gray-900 p-4 space-y-4">
<div class="text-center text-lg font-semibold">RC Cars</div>
<a href="#" class="sidebar-link p-2 rounded text-white hover:text-black">Dashboard</a>
<a href="#" class="sidebar-link p-2 rounded text-white hover:text-black">IDE</a>
<a href="#" class="sidebar-link p-2 rounded text-white hover:text-black">Online Store</a>
<a href="#" class="sidebar-link p-2 rounded text-white hover:text-black">Community</a>
<a href="#" class="sidebar-link p-2 rounded text-white hover:text-black">Help and FAQ</a>
<div class="mt-auto flex items-center space-x-2">
<img src="https://via.placeholder.com/50" alt="User" class="rounded-full">
<span>Username</span>
</div>
</div>
<!-- Main Content -->
<div class="flex-1 p-8">
<h1 class="text-3xl font-bold mb-6">Welcome to RC Cars Universe!</h1>
<div class="mb-6">
<!-- Slideshow container -->
<div class="relative w-full h-64 mb-6">
<!-- Slides -->
<div class="absolute inset-0 bg-cover bg-center" style="background-image: url('https://source.unsplash.com/featured/?rc-car');"></div>
<!-- Add more slides as needed -->
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 mb-6">
<div class="p-4 primary-color rounded">
<h2 class="font-semibold">User Info</h2>
<p>Name: John Doe</p>
<p>User ID: JD12345</p>
<p>Email: johndoe@example.com</p>
</div>
<div class="p-4 secondary-color rounded">
<h2 class="font-semibold">User Metrics</h2>
<p>Time Spent: 5 hours</p>
<p>Codes Written: 10</p>
<p>Codes Tested: 8</p>
</div>
</div>
<div class="flex space-x-4">
<a href="#" class="button p-2 primary-color rounded text-white hover:text-black">IDE Page</a>
<a href="#" class="button p-2 secondary-color rounded text-white hover:text-black">Setup Page</a>
<a href="#" class="button p-2 bg-gray-700 rounded text-white hover:bg-gray-600">Contact Page</a>
</div>
</div>
</div>
</body>
</html>