mvaloatto commited on
Commit
283bea8
1 Parent(s): 1828d1d

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +70 -14
index.html CHANGED
@@ -6,18 +6,74 @@
6
  <title>My static Space</title>
7
  <link rel="stylesheet" href="style.css" />
8
  </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
15
- <path stroke-linecap="round" stroke-linejoin="round" d="M6 13.5V3.75m0 9.75a1.5 1.5 0 0 1 0 3m0-3a1.5 1.5 0 0 0 0 3m0 3.75V16.5m12-3V3.75m0 9.75a1.5 1.5 0 0 1 0 3m0-3a1.5 1.5 0 0 0 0 3m0 3.75V16.5m-6-9V3.75m0 3.75a1.5 1.5 0 0 1 0 3m0-3a1.5 1.5 0 0 0 0 3m0 9.75V10.5" />
16
- </svg>
17
-
18
- Also don't forget to check the
19
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
20
- </p>
21
- </div>
22
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  </html>
 
6
  <title>My static Space</title>
7
  <link rel="stylesheet" href="style.css" />
8
  </head>
9
+ <body class="bg-gray-100 font-sans">
10
+ <header class="container mx-auto py-8">
11
+ <!-- Hero section -->
12
+ <div class="flex flex-col items-center justify-center">
13
+ <h1 class="text-4xl font-bold text-gray-900 mb-4">Most Popular Users Leaderboard</h1>
14
+ <p class="text-gray-600 text-lg">Discover the top influencers in our community</p>
15
+ </div>
16
+ </header>
17
+ <main class="container mx-auto py-8">
18
+ <!-- Leaderboard section -->
19
+ <section class="bg-white rounded-lg shadow-md p-4">
20
+ <h2 class="text-2xl font-bold text-gray-900 mb-4">Leaderboard</h2>
21
+ <ul class="divide-y divide-gray-200">
22
+ <li class="py-4">
23
+ <div class="flex items-center">
24
+ <img src="https://via.placeholder.com/50x50" alt="User avatar" class="w-12 h-12 rounded-full mr-4">
25
+ <div>
26
+ <h3 class="text-gray-900 font-semibold">John Doe</h3>
27
+ <p class="text-gray-600">
28
+ <a href="#" class="underline">johndoe.com</a>
29
+ <span class="mx-2">|</span>
30
+ <a href="#" class="underline">@johndoe</a>
31
+ <span class="mx-2">|</span>
32
+ <a href="#" class="underline">johndoe/github</a>
33
+ </p>
34
+ </div>
35
+ </div>
36
+ </li>
37
+ <!-- Add more user entries here -->
38
+ </ul>
39
+ </section>
40
+ <!-- Testimonials section -->
41
+ <section class="bg-white rounded-lg shadow-md p-4 mt-8">
42
+ <h2 class="text-2xl font-bold text-gray-900 mb-4">Testimonials</h2>
43
+ <div class="flex flex-col md:flex-row">
44
+ <div class="flex-grow mb-4 md:mb-0">
45
+ <blockquote class="p-4 rounded-lg bg-gray-100">
46
+ <p class="text-gray-800 font-semibold">"I love this leaderboard! It's been a great resource for discovering new influencers."</p>
47
+ <cite class="block text-right text-gray-600 mt-2">- Jane Smith</cite>
48
+ </blockquote>
49
+ </div>
50
+ <div class="flex-grow">
51
+ <blockquote class="p-4 rounded-lg bg-gray-100">
52
+ <p class="text-gray-800 font-semibold">"This leaderboard has helped me grow my audience and connect with other creators in the community."</p>
53
+ <cite class="block text-right text-gray-600 mt-2">- John Doe</cite>
54
+ </blockquote>
55
+ </div>
56
+ </div>
57
+ </section>
58
+ <!-- Contact section -->
59
+ <section class="bg-white rounded-lg shadow-md p-4 mt-8">
60
+ <h2 class="text-2xl font-bold text-gray-900 mb-4">Get in touch</h2>
61
+ <form class="space-y-4">
62
+ <div>
63
+ <label for="name" class="block text-gray-700 font-bold mb-2">Name</label>
64
+ <input type="text" id="name" class="w-full border border-gray-300 rounded-md px-3 py-2 focus:outline-none focus:border-blue-500" required>
65
+ </div>
66
+ <div>
67
+ <label for="email" class="block text-gray-700 font-bold mb-2">Email</label>
68
+ <input type="email" id="email" class="w-full border border-gray-300 rounded-md px-3 py-2 focus:outline-none focus:border-blue-500" required>
69
+ </div>
70
+ <div>
71
+ <label for="message" class="block text-gray-700 font-bold mb-2">Message</label>
72
+ <textarea id="message" class="w-full border border-gray-300 rounded-md px-3 py-2 focus:outline-none focus:border-blue-500" rows="4" required></textarea>
73
+ </div>
74
+ <button type="submit" class="bg-blue-500 hover:bg-blue-600 text-white font-bold py-2 px-4 rounded-md focus:outline-none focus:shadow-outline">Send message</button>
75
+ </form>
76
+ </section>
77
+ </main>
78
+ </body>
79
  </html>