Update template

Seto Elkahfi committed Jun 19, 2026 at 00:39 UTC 1246ec1d6dd4e32642c7b878fd86b2ce76d070cc
2 files changed +18 -29
app/views/layouts/application.html.erb
+14 -12
index 1246aac..51a499b 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -36,20 +36,22 @@ </main> <footer class="border-t border-surface-600 mt-16"> - <div class="max-w-6xl mx-auto px-4 sm:px-6 py-8 flex items-center justify-between text-xs text-gray-500"> - <span> - Get <a href="https://getsigit.5mb.app/" class="hover:text-gray-300 transition-colors" target="_blank" rel="noopener noreferrer">siGit Code &amp; Deploy</a></span> - <nav class="flex items-center gap-4"> - <%= link_to "About", about_path, class: "hover:text-gray-300 transition-colors" %> - <%= link_to "Privacy", privacy_path, class: "hover:text-gray-300 transition-colors" %> - <%= link_to "Terms", terms_path, class: "hover:text-gray-300 transition-colors" %> - <%= link_to "Contact", contact_path, class: "hover:text-gray-300 transition-colors" %> + <div class="max-w-6xl mx-auto px-4 sm:px-6 py-8 flex flex-col gap-6 text-xs text-gray-500 + md:flex-row md:items-center md:justify-between"> + <span class="whitespace-nowrap text-center md:text-left"> + Get <a href="https://getsigit.5mb.app/" class="text-brand-500 hover:text-brand-400 transition-colors" target="_blank" rel="noopener noreferrer">siGit&nbsp;Code&nbsp;&amp;&nbsp;Deploy</a> + </span> + <nav class="flex items-center justify-center gap-6"> + <%= link_to "About", about_path, class: "text-gray-400 hover:text-gray-200 transition-colors" %> + <%= link_to "Privacy", privacy_path, class: "text-gray-400 hover:text-gray-200 transition-colors" %> + <%= link_to "Terms", terms_path, class: "text-gray-400 hover:text-gray-200 transition-colors" %> + <%= link_to "Contact", contact_path, class: "text-gray-400 hover:text-gray-200 transition-colors" %> </nav> - <div class="flex items-center"> - Auth and Mail by&nbsp;<a href="https://smbcloud.xyz/" class="hover:text-gray-300 transition-colors" target="_blank" rel="noopener noreferrer">smbCloud Platform</a> - </div> - <%= render "shared/dev_panel" if Rails.env.development? %> + <span class="whitespace-nowrap text-center md:text-right"> + Auth &amp; Mail by <a href="https://smbcloud.xyz/" class="text-brand-500 hover:text-brand-400 transition-colors" target="_blank" rel="noopener noreferrer">smbCloud&nbsp;Platform</a> + </span> </div> + <%= render "shared/dev_panel" if Rails.env.development? %> </footer> </body> </html>
app/views/pages/home.html.erb
+4 -17
index 094e4ab..dcf4e4d 100644 --- a/app/views/pages/home.html.erb +++ b/app/views/pages/home.html.erb @@ -7,13 +7,14 @@ <h1 class="mt-6 max-w-2xl text-4xl font-semibold tracking-tight text-gray-100 sm:text-6xl"> - Code and models, hosted side by side. + Git hosting for the AI era. </h1> <p class="mt-6 max-w-xl text-base leading-7 text-gray-400 sm:text-lg"> - siGit is git hosting built for the AI era. Version your repositories, publish + Version your repositories, publish open-weights models with full model cards and LFS-backed files, and hand the keys - to your AI agent over the Agent Client Protocol. + to your AI agent over the Agent Client Protocol ~ + <span class="mt-10 text-gray-500"><a href="/sigit" class="text-gray-400 underline underline-offset-2 hover:text-gray-200 transition-colors">@sigit</a></span> </p> <div class="mt-10 flex flex-col gap-3 sm:flex-row"> @@ -24,20 +25,6 @@ <%= link_to "Sign in", signin_path, class: "btn-secondary px-6 py-3 text-sm justify-center" %> <% end %> </div> - <p class="mt-10 text-sm text-gray-500">or check what <a href="/sigit" class="text-gray-400 underline underline-offset-2 hover:text-gray-200 transition-colors">@sigit</a> is doing</p> - - <div class="mt-10 flex flex-wrap items-center gap-4"> - <a href="https://apps.apple.com/se/app/sigit-git-client-code-editor/id6753018849" target="_blank" rel="noopener noreferrer" aria-label="Download on the App Store"> - <img src="/images/Download_on_the_App_Store_Badge_US-UK_RGB_blk_092917.svg" alt="Download on the App Store" class="h-9"> - </a> - <a href="https://play.google.com/store/apps/details?id=xyz.smbcloud.SiGit" target="_blank" rel="noopener noreferrer" aria-label="Get it on Google Play"> - <img src="/images/GetItOnGooglePlay_Badge_Web_color_English.png" alt="Get it on Google Play" class="h-9"> - </a> - <a href="https://apps.microsoft.com/detail/xp9k321rf5mzsz?ocid=webpdpshare - Get siGit Code & Deploy from the Microsoft Store" target="_blank" rel="noopener noreferrer" aria-label="Get it on Microsoft Store"> - <img src="/images/MicrosoftStore_Badge_Web_dark.svg" alt="Get it on Microsoft Store" class="h-9"> - </a> - </div> </div> </div> </section>