A fast, local-first "redirection engine" for !bang users with a few extra features ^-^

Add footer

Theo Browne ac03327e eea743e8

Changed files
+24
src
+21
src/global.css
···
.copy-button.copied {
background: #28a745;
}
+
+
/* Add footer styles */
+
.footer {
+
position: fixed;
+
bottom: 16px;
+
left: 0;
+
right: 0;
+
text-align: center;
+
font-size: 14px;
+
color: #666;
+
}
+
+
.footer a {
+
color: #666;
+
text-decoration: none;
+
font-weight: 500;
+
}
+
+
.footer a:hover {
+
color: #333;
+
}
+3
src/main.ts
···
</button>
</div>
</div>
+
<footer class="footer">
+
created by <a href="https://x.com/theo" target="_blank">theo</a>
+
</footer>
</div>
`;