Skip to content

Commit 7e5729d

Browse files
committedSep 4, 2024·
init
0 parents  commit 7e5729d

7 files changed

+126
-0
lines changed
 

‎Distributed.png

1.65 KB
Loading

‎fast.png

1.05 KB
Loading

‎favicon.ico

15 KB
Binary file not shown.

‎overview.html

+126
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<link rel="icon" type="image/x-icon" href="favicon.ico">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Quebrix</title>
8+
<style>
9+
body {
10+
font-family: Arial, sans-serif;
11+
margin: 0;
12+
padding: 0;
13+
background-color: #2c2c2c;
14+
color: #f4f4f4;
15+
display: flex;
16+
flex-direction: column;
17+
align-items: center;
18+
min-height: 100vh;
19+
overflow-x: hidden; /* Prevent horizontal scrolling */
20+
}
21+
header, footer {
22+
background-color: #3f3f3f; /* Lightened color */
23+
color: white;
24+
padding: 20px;
25+
text-align: center;
26+
width: 100%;
27+
}
28+
header span {
29+
display: flex;
30+
align-items: center;
31+
justify-content: center;
32+
}
33+
header img {
34+
margin-right: 10px;
35+
}
36+
.container {
37+
width: 80%;
38+
max-width: 1200px;
39+
text-align: center;
40+
flex: 1;
41+
}
42+
main {
43+
padding: 20px;
44+
}
45+
section {
46+
margin-bottom: 20px;
47+
}
48+
.feature {
49+
background-color: #3a3a3a;
50+
margin: 10px;
51+
padding: 20px;
52+
border-radius: 10px;
53+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
54+
text-align: center;
55+
width: 200px;
56+
}
57+
.features {
58+
display: flex;
59+
justify-content: space-around;
60+
flex-wrap: wrap;
61+
}
62+
.feature img {
63+
width: 50px;
64+
height: 50px;
65+
}
66+
.feature h3 {
67+
color: #5e8ff8;
68+
}
69+
</style>
70+
</head>
71+
<body>
72+
<header>
73+
<span>
74+
<img src="quebrix.png" width="110" height="110" alt="logo">
75+
<h1>Quebrix</h1>
76+
</span>
77+
</header>
78+
<div class="container">
79+
<main>
80+
<section>
81+
<h2 style="color: #5e8ff8;">Overview</h2>
82+
<p>Quebrix is a <strong>distributed cache application</strong> designed to enhance web performance by efficiently managing and storing frequently accessed data. Developed using the <strong>Rust programming language</strong>, Quebrix ensures <strong>thread safety</strong> and <strong>security</strong>.</p>
83+
</section>
84+
<section>
85+
<p><strong>Persistence:</strong> Quebrix offers data persistence to ensure that your data is always available.</p>
86+
<p><strong>Eviction Strategy:</strong> It includes an efficient eviction strategy to manage cache storage effectively.</p>
87+
<p><strong>Cluster Support:</strong> Quebrix supports clustering to save data across multiple nodes, ensuring high availability and reliability.</p>
88+
<p><strong>Remote Access:</strong> You can access the application from outside the server, providing flexibility and ease of use.</p>
89+
<p><strong>High Performance:</strong> Quebrix is designed to be extremely fast, reducing load times and improving user experience.</p>
90+
</section>
91+
<section>
92+
<h2 style="color: #5e8ff8;">Benefits</h2>
93+
<p>By using Quebrix, you can significantly reduce load times, improve user experience, and lower server costs. Its robust features ensure that your data is secure, persistent, and easily accessible.</p>
94+
</section>
95+
<section>
96+
<h2 style="color: #5e8ff8;">Features</h2>
97+
<div class="features">
98+
<div class="feature">
99+
<img style="padding-left: 25px;" src="fast.png" alt="Fast" width="50" height="50">
100+
<h3>Fast</h3>
101+
</div>
102+
<div class="feature">
103+
<img src="secure.png" alt="Fast" width="50" height="50">
104+
<h3>Secure</h3>
105+
</div>
106+
<div class="feature">
107+
<img src="Distributed.png" alt="Fast" width="50" height="50">
108+
<h3>Distributed</h3>
109+
</div>
110+
<div class="feature">
111+
<img src="safe.png" alt="Fast" width="50" height="50">
112+
<h3>Safe</h3>
113+
</div>
114+
</div>
115+
</section>
116+
<section>
117+
<h2 style="color: #487ef3;">Benefits</h2>
118+
<p>By using Quebrix, you can significantly reduce load times, improve user experience, and lower server costs.</p>
119+
</section>
120+
</main>
121+
</div>
122+
<footer>
123+
<p>&copy; 2024 Quebrix. All rights reserved.</p>
124+
</footer>
125+
</body>
126+
</html>

‎quebrix.png

42.1 KB
Loading

‎safe.png

2.06 KB
Loading

‎secure.png

2.59 KB
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.