Update index.html
Browse files- index.html +87 -20
index.html
CHANGED
@@ -3,47 +3,114 @@
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
-
<title>
|
7 |
<style>
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
body {
|
9 |
-
font-family: Arial, sans-serif;
|
10 |
line-height: 1.6;
|
11 |
-
color:
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
margin: 0 auto;
|
14 |
padding: 20px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
}
|
16 |
h1 {
|
17 |
-
color:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
}
|
19 |
.graph-link {
|
20 |
display: inline-block;
|
21 |
-
|
22 |
-
|
23 |
-
background-color: #4a4a4a;
|
24 |
color: white;
|
25 |
text-decoration: none;
|
26 |
border-radius: 5px;
|
27 |
-
transition: background-color 0.3s ease;
|
28 |
}
|
29 |
.graph-link:hover {
|
30 |
-
background-color:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
}
|
32 |
</style>
|
33 |
</head>
|
34 |
<body>
|
35 |
-
<
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
<a href="co_organization.html" class="graph-link">Hugging Face Organizations Network</a>
|
40 |
-
<p>This graph represents the network of Hugging Face organizations and their relationships.</p>
|
41 |
-
|
42 |
-
<a href="co_user.html" class="graph-link">Hugging Face Users Network</a>
|
43 |
-
<p>This graph shows the network of Hugging Face users and their interactions.</p>
|
44 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
<footer>
|
46 |
-
<p>Created
|
47 |
</footer>
|
48 |
</body>
|
49 |
</html>
|
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Bunka Network Graphs</title>
|
7 |
<style>
|
8 |
+
:root {
|
9 |
+
--primary-color: #4a4a4a;
|
10 |
+
--secondary-color: #6c757d;
|
11 |
+
--background-color: #f8f9fa;
|
12 |
+
--hover-color: #007bff;
|
13 |
+
}
|
14 |
body {
|
15 |
+
font-family: 'Arial', sans-serif;
|
16 |
line-height: 1.6;
|
17 |
+
color: var(--primary-color);
|
18 |
+
background-color: var(--background-color);
|
19 |
+
margin: 0;
|
20 |
+
padding: 0;
|
21 |
+
display: flex;
|
22 |
+
flex-direction: column;
|
23 |
+
min-height: 100vh;
|
24 |
+
}
|
25 |
+
.container {
|
26 |
+
max-width: 1200px;
|
27 |
margin: 0 auto;
|
28 |
padding: 20px;
|
29 |
+
flex-grow: 1;
|
30 |
+
}
|
31 |
+
header {
|
32 |
+
background-color: white;
|
33 |
+
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
34 |
+
padding: 20px 0;
|
35 |
+
text-align: center;
|
36 |
+
}
|
37 |
+
.logo {
|
38 |
+
max-width: 200px;
|
39 |
+
height: auto;
|
40 |
}
|
41 |
h1 {
|
42 |
+
color: var(--primary-color);
|
43 |
+
margin-top: 20px;
|
44 |
+
}
|
45 |
+
.graph-links {
|
46 |
+
display: flex;
|
47 |
+
justify-content: center;
|
48 |
+
gap: 20px;
|
49 |
+
margin-top: 30px;
|
50 |
}
|
51 |
.graph-link {
|
52 |
display: inline-block;
|
53 |
+
padding: 10px 20px;
|
54 |
+
background-color: var(--primary-color);
|
|
|
55 |
color: white;
|
56 |
text-decoration: none;
|
57 |
border-radius: 5px;
|
58 |
+
transition: background-color 0.3s ease, transform 0.3s ease;
|
59 |
}
|
60 |
.graph-link:hover {
|
61 |
+
background-color: var(--hover-color);
|
62 |
+
transform: translateY(-3px);
|
63 |
+
}
|
64 |
+
.social-links {
|
65 |
+
display: flex;
|
66 |
+
justify-content: center;
|
67 |
+
gap: 15px;
|
68 |
+
margin-top: 30px;
|
69 |
+
}
|
70 |
+
.social-links a {
|
71 |
+
opacity: 0.7;
|
72 |
+
transition: opacity 0.3s ease;
|
73 |
+
}
|
74 |
+
.social-links a:hover {
|
75 |
+
opacity: 1;
|
76 |
+
}
|
77 |
+
.social-links img {
|
78 |
+
width: 30px;
|
79 |
+
height: 30px;
|
80 |
+
}
|
81 |
+
footer {
|
82 |
+
background-color: var(--secondary-color);
|
83 |
+
color: white;
|
84 |
+
text-align: center;
|
85 |
+
padding: 10px 0;
|
86 |
+
margin-top: 40px;
|
87 |
}
|
88 |
</style>
|
89 |
</head>
|
90 |
<body>
|
91 |
+
<header>
|
92 |
+
<img src="https://huggingface.co/spaces/bunkalab/README/raw/main/bunka_logo.png" alt="Bunka Logo" class="logo">
|
93 |
+
<h1>Bunka Network Graphs</h1>
|
94 |
+
</header>
|
|
|
|
|
|
|
|
|
|
|
95 |
|
96 |
+
<div class="container">
|
97 |
+
<p>Welcome to the Bunka Network Graphs visualization page. Explore two different network graphs representing relationships within the Hugging Face community.</p>
|
98 |
+
|
99 |
+
<div class="graph-links">
|
100 |
+
<a href="co_organization.html" class="graph-link">Hugging Face Organizations Network</a>
|
101 |
+
<a href="co_user.html" class="graph-link">Hugging Face Users Network</a>
|
102 |
+
</div>
|
103 |
+
|
104 |
+
<div class="social-links">
|
105 |
+
<a href="https://github.com/charlesdedampierre/BunkaTopics" target="_blank"><img src="https://qtyhiurxoicqmxzpktkd.supabase.co/storage/v1/object/sign/email-content/github-logo.png?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1cmwiOiJlbWFpbC1jb250ZW50L2dpdGh1Yi1sb2dvLnBuZyIsImlhdCI6MTcyNDgzOTk3NywiZXhwIjoxNzg3OTExOTc3fQ.qPEnoJOVqTkWdquVPkMWZFYHv29q8pb5mbcVBGFZWTU&t=2024-08-28T10%3A12%3A58.108Z" alt="GitHub"></a>
|
106 |
+
<a href="https://huggingface.co/bunkalab" target="_blank"><img src="https://qtyhiurxoicqmxzpktkd.supabase.co/storage/v1/object/sign/email-content/hugging%20face.png?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1cmwiOiJlbWFpbC1jb250ZW50L2h1Z2dpbmcgZmFjZS5wbmciLCJpYXQiOjE3MjQ4Mzk4NDAsImV4cCI6MTc4NzkxMTg0MH0.6gOtEK2BXc3kSL3PIswY0LJyvp790580Jm6vxztiFhw&t=2024-08-28T10%3A10%3A40.145Z" alt="Hugging Face"></a>
|
107 |
+
<a href="https://www.linkedin.com/company/85881815" target="_blank"><img src="https://qtyhiurxoicqmxzpktkd.supabase.co/storage/v1/object/sign/email-content/LinkedIn_logo_initials.png?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1cmwiOiJlbWFpbC1jb250ZW50L0xpbmtlZEluX2xvZ29faW5pdGlhbHMucG5nIiwiaWF0IjoxNzI0ODQwMDQ1LCJleHAiOjE3ODc5MTIwNDV9.9d6MAK3x9LOmsYyB8KyGk5PPFGkPNoGjsW7wdxiZt3M&t=2024-08-28T10%3A14%3A05.996Z" alt="LinkedIn"></a>
|
108 |
+
<a href="https://discord.gg/3YRPVqXabQ" target="_blank"><img src="https://qtyhiurxoicqmxzpktkd.supabase.co/storage/v1/object/sign/email-content/discord.png?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1cmwiOiJlbWFpbC1jb250ZW50L2Rpc2NvcmQucG5nIiwiaWF0IjoxNzI0ODM5ODc4LCJleHAiOjE3ODc5MTE4Nzh9.w1Ggb_Nh1UnjKeVujp_7ljAW0ZSP3ETNkYJLKuBZ_Zo&t=2024-08-28T10%3A11%3A18.993Z" alt="Discord"></a>
|
109 |
+
</div>
|
110 |
+
</div>
|
111 |
+
|
112 |
<footer>
|
113 |
+
<p>Created by Bunka. For more information, visit <a href="https://huggingface.co/bunkalab" style="color: white;">bunkalab on Hugging Face</a>.</p>
|
114 |
</footer>
|
115 |
</body>
|
116 |
</html>
|