Compare commits
3 Commits
b2a2ef42ee
...
43281cff5f
Author | SHA1 | Date |
---|---|---|
Mike-FreeAI | 43281cff5f | |
Fatih Kadir Akın | b82b3854cb | |
Mike-FreeAI | 7ed4b3b288 |
|
@ -2,14 +2,17 @@
|
|||
|
||||
[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)
|
||||
|
||||
|
||||
<h2 align="center">Sponsors</h2>
|
||||
|
||||
<p align="center">
|
||||
<a href="https://clemta.com" align="center" target="_blank">
|
||||
<img height="50" alt="Clemta logo" src="https://clemta.com/wp-content/uploads/2023/03/logo-clemta-com-1.png.webp">
|
||||
</a>
|
||||
<br>
|
||||
<br><br>
|
||||
<a href="https://llmchat.co" align="center" target="_blank">
|
||||
<img height="25" alt="LLMChat" src="https://github.com/user-attachments/assets/78bf6b22-234c-4ee2-a484-869e749eef42">
|
||||
</a>
|
||||
<br><sub><a href="https://git.new/llmchat" target="_blank">https://git.new/llmchat</a></sub><br><br>
|
||||
<a href="https://hf.co/chat" align="center" target="_blank">
|
||||
<img height="60" alt="Hugging Face logo" src="https://github.com/user-attachments/assets/4187ef06-7cae-402a-a410-e0a999758fed">
|
||||
</a>
|
||||
|
|
|
@ -51,6 +51,9 @@
|
|||
<h1><a href="{{ "/" | absolute_url }}">{{ site.title }}</a></h1>
|
||||
{% endif %}
|
||||
|
||||
<!-- Navigation link to sponsor-wall.html added -->
|
||||
<p><a href="{{ '/sponsor-wall.html' | relative_url }}">Sponsor Wall</a></p>
|
||||
|
||||
{{ content }}
|
||||
|
||||
{% if site.github.private != true and site.github.license %}
|
||||
|
|
|
@ -0,0 +1,32 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Sponsor Wall</title>
|
||||
<style>
|
||||
.grid-container {
|
||||
display: grid;
|
||||
grid-template-columns: auto auto auto;
|
||||
padding: 10px;
|
||||
}
|
||||
.grid-item {
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Sponsor Wall</h1>
|
||||
</header>
|
||||
<p>This page is dedicated to all our amazing sponsors who have supported us. Thank you for your contributions!</p>
|
||||
<div class="grid-container">
|
||||
<!-- Sponsor logos will be added here -->
|
||||
<div class="grid-item">Sponsor 1 Logo</div>
|
||||
<div class="grid-item">Sponsor 2 Logo</div>
|
||||
<div class="grid-item">Sponsor 3 Logo</div>
|
||||
<!-- More sponsors can be added in similar divs -->
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue