mirror of
https://github.com/Magnus167/rustframe.git
synced 2025-08-20 04:19:59 +00:00
81 lines
2.1 KiB
HTML
81 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Rustframe</title>
|
|
<link rel="icon" type="image/png" href="./rustframe_logo.png">
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #2b2b2b;
|
|
color: #d4d4d4;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
main {
|
|
text-align: center;
|
|
padding: 20px;
|
|
background-color: #3c3c3c;
|
|
border-radius: 10px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
|
max-width: 600px;
|
|
}
|
|
|
|
img {
|
|
max-width: 100px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
h1 {
|
|
/* logo is b35f20 */
|
|
color: #f8813f;
|
|
}
|
|
|
|
a {
|
|
color: #ff9a60;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<main>
|
|
<h1>
|
|
<img src="./rustframe_logo.png" alt="Rustframe Logo"><br>
|
|
Rustframe
|
|
</h1>
|
|
<h2>A lightweight dataframe & math toolkit for Rust</h2>
|
|
<hr style="border: 1px solid #d4d4d4; margin: 20px 0;">
|
|
<p>
|
|
|
|
🐙 <a href="https://github.com/Magnus167/rustframe">GitHub</a>
|
|
<br><br>
|
|
|
|
📖 <a href="https://magnus167.github.io/rustframe/user-guide">User Guide</a>
|
|
<br><br>
|
|
|
|
|
|
📚 <a href="https://magnus167.github.io/rustframe/docs">Docs</a> |
|
|
📊 <a href="https://magnus167.github.io/rustframe/benchmark-report/">Benchmarks</a>
|
|
|
|
<br><br>
|
|
🦀 <a href="https://crates.io/crates/rustframe">Crates.io</a> |
|
|
🔖 <a href="https://docs.rs/rustframe/latest/rustframe/">docs.rs</a>
|
|
<br><br>
|
|
<!-- 🌐 <a href="https://gitea.nulltech.uk/Magnus167/rustframe">Gitea mirror</a> -->
|
|
</p>
|
|
</main>
|
|
</body>
|
|
|
|
</html> |