Spaces:
Sleeping
Sleeping
Mohammed AL Sarraj commited on
Commit ·
dbc25ae
1
Parent(s): 204dc8c
feat: add hire me and gumroad banner to all pages
Browse files- app/templates/base.html +29 -0
app/templates/base.html
CHANGED
|
@@ -123,6 +123,35 @@ tailwind.config = {
|
|
| 123 |
<body class="bg-surface text-on-surface selection:bg-primary-container selection:text-on-primary-container">
|
| 124 |
{% block content %}{% endblock %}
|
| 125 |
{% block extra_scripts %}{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 126 |
<script>
|
| 127 |
(function() {
|
| 128 |
var toolAlphas = {"schema-detective":"0.10","test-forge":"0.13","sql-whisperer":"0.08","doc-forge":"0.11","changelog-ai":"0.09","git-narrator":"0.12"};
|
|
|
|
| 123 |
<body class="bg-surface text-on-surface selection:bg-primary-container selection:text-on-primary-container">
|
| 124 |
{% block content %}{% endblock %}
|
| 125 |
{% block extra_scripts %}{% endblock %}
|
| 126 |
+
|
| 127 |
+
<!-- Hire Me + Gumroad Banner -->
|
| 128 |
+
<div style="
|
| 129 |
+
position:fixed;bottom:0;left:0;right:0;z-index:9999;
|
| 130 |
+
background:rgba(248,249,250,0.95);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
|
| 131 |
+
border-top:1px solid rgba(171,179,183,0.35);
|
| 132 |
+
display:flex;align-items:center;justify-content:center;gap:16px;
|
| 133 |
+
padding:10px 20px;flex-wrap:wrap;
|
| 134 |
+
">
|
| 135 |
+
<span style="font-size:12px;color:#586064;font-family:DM Sans,sans-serif;">
|
| 136 |
+
Built by <strong style="color:#2b3437;">Mohammed AL Sarraj</strong> · AI Engineer
|
| 137 |
+
</span>
|
| 138 |
+
<a href="https://www.upwork.com/freelancers/~01446e0b299a45e259" target="_blank" rel="noopener"
|
| 139 |
+
style="display:inline-flex;align-items:center;gap:5px;padding:5px 12px;border-radius:100px;
|
| 140 |
+
background:#00d97e;color:#003d20;font-size:11px;font-weight:700;text-decoration:none;
|
| 141 |
+
font-family:DM Sans,sans-serif;letter-spacing:.03em;transition:opacity .15s;"
|
| 142 |
+
onmouseover="this.style.opacity='.85'" onmouseout="this.style.opacity='1'">
|
| 143 |
+
Hire me on Upwork ↗
|
| 144 |
+
</a>
|
| 145 |
+
<a href="https://moescribe425.gumroad.com/l/zgudy" target="_blank" rel="noopener"
|
| 146 |
+
style="display:inline-flex;align-items:center;gap:5px;padding:5px 12px;border-radius:100px;
|
| 147 |
+
background:#2b3437;color:#f8f9fa;font-size:11px;font-weight:700;text-decoration:none;
|
| 148 |
+
font-family:DM Sans,sans-serif;letter-spacing:.03em;transition:opacity .15s;"
|
| 149 |
+
onmouseover="this.style.opacity='.8'" onmouseout="this.style.opacity='1'">
|
| 150 |
+
Get the Prompt Pack — $19 ↗
|
| 151 |
+
</a>
|
| 152 |
+
</div>
|
| 153 |
+
<style>body { padding-bottom: 56px; }</style>
|
| 154 |
+
|
| 155 |
<script>
|
| 156 |
(function() {
|
| 157 |
var toolAlphas = {"schema-detective":"0.10","test-forge":"0.13","sql-whisperer":"0.08","doc-forge":"0.11","changelog-ai":"0.09","git-narrator":"0.12"};
|