Skip to content

Commit 758378a

Browse files
committed
Feat: Github pages
1 parent c66499b commit 758378a

File tree

3 files changed

+64
-4
lines changed

3 files changed

+64
-4
lines changed

docs/css/style.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/* docs/css/style.css */
2+
/* Custom styles can be added here */
3+
body {
4+
font-family: 'Inter', sans-serif;
5+
}

docs/index.html

Lines changed: 56 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,62 @@
33
<head>
44
<meta charset="UTF-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Hello World</title>
6+
<title>Rinha de Backend - Segunda Edição</title>
7+
<!-- Link to custom styles -->
8+
<link rel="stylesheet" href="css/style.css">
9+
<!-- Tailwind CSS via CDN -->
10+
<script src="https://cdn.tailwindcss.com"></script>
711
</head>
8-
<body>
9-
<h1>Hello, World!</h1>
10-
<p>Welcome to the Hello World page.</p>
12+
<body class="bg-gray-100 text-gray-800">
13+
<header class="bg-white shadow">
14+
<div class="container mx-auto px-4 py-6">
15+
<h1 class="text-3xl font-bold">Rinha de Backend</h1>
16+
<p class="mt-2 text-lg">Segunda Edição</p>
17+
</div>
18+
</header>
19+
<main class="container mx-auto px-4 py-8">
20+
<section class="mb-8">
21+
<h2 class="text-2xl font-semibold mb-4">About the Project</h2>
22+
<p class="mb-4">
23+
This project, <span class="font-mono">rinha2-back-end-bora-dale-xgh</span>, was
24+
developed during the Rinha de Backend competition. It showcases a flawless blend
25+
of modern technologies and robust coding practices.
26+
</p>
27+
<p class="mb-4">The project leverages a diverse set of technologies:</p>
28+
<ul class="list-disc list-inside">
29+
<li><strong>JavaScript:</strong> 48.8% of the codebase delivers dynamic functionalities and server-side operations.</li>
30+
<li><strong>PLpgSQL:</strong> 28.6% for advanced database procedures ensuring optimal performance.</li>
31+
<li><strong>C#:</strong> 15.4% powering performance-critical backend services.</li>
32+
<li><strong>Dockerfile:</strong> 4.9% for containerization, ensuring consistency across environments.</li>
33+
<li><strong>Shell:</strong> 2.3% for automation and efficient scripting.</li>
34+
</ul>
35+
</section>
36+
<section class="mb-8">
37+
<h2 class="text-2xl font-semibold mb-4">Technical Excellence</h2>
38+
<p class="mb-4">
39+
The project follows clean code principles and adopts proven architectural patterns. This guarantees:
40+
</p>
41+
<ul class="list-disc list-inside">
42+
<li>Scalability and maintainability through a modular design.</li>
43+
<li>Robust error handling and comprehensive logging.</li>
44+
<li>Optimized database interactions using advanced PLpgSQL techniques.</li>
45+
<li>Consistent deployments through containerization with Docker.</li>
46+
<li>Routine tasks automated efficiently with shell scripts.</li>
47+
</ul>
48+
</section>
49+
<section>
50+
<h2 class="text-2xl font-semibold mb-4">User Experience</h2>
51+
<p class="mb-4">
52+
With a minimalistic and modern design, the page delivers a clean presentation of the project’s technical strengths—perfectly aligned with current trends in backend development.
53+
</p>
54+
</section>
55+
</main>
56+
<footer class="bg-white shadow mt-8">
57+
<div class="container mx-auto px-4 py-4">
58+
<p class="text-center">© 2025 Rinha de Backend Competition | Built with Tailwind CSS</p>
59+
</div>
60+
</footer>
61+
<!-- Link to custom scripts -->
62+
<script src="js/script.js"></script>
1163
</body>
1264
</html>

docs/js/script.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// docs/js/script.js
2+
// Custom JavaScript for additional functionalities can be added here.
3+
console.log("Rinha de Backend page loaded.");

0 commit comments

Comments
 (0)