Wauplin's picture
Wauplin HF Staff
Add index.html
b6e4209 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hugging Face JS Packages</title>
<style>
body {
font-family: "Arial", sans-serif;
margin: 0;
padding: 20px;
background-color: #f0f4f8;
color: #333;
}
h1 {
color: #0056b3;
text-align: center;
margin-bottom: 20px;
}
ul {
list-style-type: none;
padding: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
li {
background: #ffffff;
margin: 10px;
padding: 15px;
border: 1px solid #d3d3d3;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 200px;
text-align: center;
transition: transform 0.2s;
}
li:hover {
transform: scale(1.05);
}
a {
color: #0056b3;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Hugging Face JS Packages</h1>
<ul>
<li><a href="#">agents</a></li>
<li><a href="#">blob</a></li>
<li><a href="#">dduf</a></li>
<li><a href="#">doc-internal</a></li>
<li><a href="#">gguf</a></li>
<li><a href="#">hub</a></li>
<li><a href="#">inference</a></li>
<li><a href="#">jinja</a></li>
<li><a href="#">languages</a></li>
<li><a href="#">mcp-client</a></li>
<li><a href="#">ollama-utils</a></li>
<li><a href="#">space-header</a></li>
<li><a href="#">tasks</a></li>
<li><a href="#">tasks-gen</a></li>
<li><a href="#">widgets</a></li>
</ul>
</body>
</html>