Add software landing page showcasing Unturf projects

This commit is contained in:
Russell Ballestrini 2025-10-15 07:12:41 -04:00
parent cc53ea5cef
commit 6128e482d3
2 changed files with 96 additions and 0 deletions

89
software/index.html Normal file
View file

@ -0,0 +1,89 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Unturf Software - Open Source Projects</title>
<link rel="stylesheet" href="../css/pico.classless.min.css">
<style>
body {
padding: 2rem;
}
.project {
margin: 2rem 0;
padding: 1.5rem;
border-left: 4px solid #1095c1;
}
.project h2 {
margin-top: 0;
}
.links {
margin-top: 1rem;
}
.links a {
margin-right: 1rem;
display: inline-block;
margin-bottom: 0.5rem;
}
header {
text-align: center;
margin-bottom: 3rem;
}
.tagline {
font-size: 1.2rem;
color: #666;
}
</style>
</head>
<body>
<header>
<h1>Unturf Software</h1>
<p class="tagline">Free as in beer, free as in freedom. All source code donated to the public domain.</p>
</header>
<main>
<section class="project">
<h2>uncloseai</h2>
<p>Free LLM & Text-to-Speech machine learning service powered by NousResearch/Hermes-3-Llama-3.1-8B. A drop-in replacement for OpenAI's API that requires no API key, making machine learning accessible to everyone. Supports both server-side and browser-based (uncloseai.js) implementations.</p>
<p><strong>Mission:</strong> Machine learning for all, internet for all, open web for everyone.</p>
<div class="links">
<a href="https://uncloseai.com" target="_blank">🌐 uncloseai.com</a>
<a href="https://ai.unturf.com" target="_blank">🌐 ai.unturf.com</a>
<a href="https://git.unturf.com/engineering/unturf/uncloseai.com" target="_blank">📦 Source Code</a>
</div>
</section>
<section class="project">
<h2>Remarkbox</h2>
<p>A hosted comment service that embeds in your pages to keep the conversation with your content. Supports standalone mode for dedicated Q&A style forums. Started in 2014 to solve the problem of adding comments to static sites.</p>
<p><strong>Business Model:</strong> Pay what you feel it's worth - based on reciprocity and trust.</p>
<div class="links">
<a href="https://www.remarkbox.com" target="_blank">🌐 remarkbox.com</a>
<a href="https://git.unturf.com/engineering/remarkbox/remarkbox" target="_blank">📦 Source Code</a>
</div>
</section>
<section class="project">
<h2>Make Post Sell</h2>
<p>Sell the digital & physical things you make — commission free! A platform for creators and makers to sell their products without paying platform fees.</p>
<div class="links">
<a href="https://shop.unturf.com" target="_blank">🌐 shop.unturf.com</a>
<a href="https://git.unturf.com/engineering/make-post-sell/make_post_sell" target="_blank">📦 Source Code</a>
</div>
</section>
<section class="project">
<h2>uncloseai-book</h2>
<p>Documentation and guide for using uncloseai services. Learn how to integrate free machine learning into your applications and websites.</p>
<div class="links">
<a href="https://git.unturf.com/engineering/unturf/uncloseai-book" target="_blank">📦 Source Code</a>
</div>
</section>
</main>
<footer>
<p><small>All source code donated into the public domain. Trademarks reserved: unturf, Remarkbox, Make Post Sell.</small></p>
<p><small><a href="/">← Back to Unturf.com</a></small></p>
</footer>
</body>
</html>