Skip to content

Commit 49b941e

Browse files
authored
fix: cleanup webui links (#300)
1 parent db7ee0c commit 49b941e

File tree

2 files changed

+16
-46
lines changed

2 files changed

+16
-46
lines changed

src/server/templates/components/footer.jinja

Lines changed: 16 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,26 @@
11
<footer class="w-full border-t-[3px] border-gray-900 mt-auto">
22
<div class="max-w-4xl mx-auto px-4 py-4">
3-
<div class="grid grid-cols-3 items-center text-gray-900 text-sm">
4-
<!-- Left column - GitHub links -->
3+
<div class="grid grid-cols-2 items-center text-gray-900 text-sm">
4+
<!-- Left column - Extension and PyPI links -->
55
<div class="flex items-center space-x-4">
6-
<a href="https://github.com/cyclotruc/gitingest"
6+
<a href="https://chromewebstore.google.com/detail/git-ingest-turn-any-git-r/adfjahbijlkjfoicpjkhjicpjpjfaood"
77
target="_blank"
88
rel="noopener noreferrer"
99
class="hover:underline flex items-center">
10-
<svg class="w-4 h-4 mr-1"
11-
xmlns="http://www.w3.org/2000/svg"
12-
viewBox="0 0 496 512">
13-
<path fill="currentColor" d="M165.9 397.4c0 2-2.3 3.6-5.2 3.6-3.3.3-5.6-1.3-5.6-3.6 0-2 2.3-3.6 5.2-3.6 3-.3 5.6 1.3 5.6 3.6zm-31.1-4.5c-.7 2 1.3 4.3 4.3 4.9 2.6 1 5.6 0 6.2-2s-1.3-4.3-4.3-5.2c-2.6-.7-5.5.3-6.2 2.3zm44.2-1.7c-2.9.7-4.9 2.6-4.6 4.9.3 2 2.9 3.3 5.9 2.6 2.9-.7 4.9-2.6 4.6-4.6-.3-1.9-3-3.2-5.9-2.9zM244.8 8C106.1 8 0 113.3 0 252c0 110.9 69.8 205.8 169.5 239.2 12.8 2.3 17.3-5.6 17.3-12.1 0-6.2-.3-40.4-.3-61.4 0 0-70 15-84.7-29.8 0 0-11.4-29.1-27.8-36.6 0 0-22.9-15.7 1.6-15.4 0 0 24.9 2 38.6 25.8 21.9 38.6 58.6 27.5 72.9 20.9 2.3-16 8.8-27.1 16-33.7-55.9-6.2-112.3-14.3-112.3-110.5 0-27.5 7.6-41.3 23.6-58.9-2.6-6.5-11.1-33.3 2.6-67.9 20.9-6.5 69 27 69 27 20-5.6 41.5-8.5 62.8-8.5s42.8 2.9 62.8 8.5c0 0 48.1-33.6 69-27 13.7 34.7 5.2 61.4 2.6 67.9 16 17.7 25.8 31.5 25.8 58.9 0 96.5-58.9 104.2-114.8 110.5 9.2 7.9 17 22.9 17 46.4 0 33.7-.3 75.4-.3 83.6 0 6.5 4.6 14.4 17.3 12.1C428.2 457.8 496 362.9 496 252 496 113.3 383.5 8 244.8 8zM97.2 352.9c-1.3 1-1 3.3.7 5.2 1.6 1.6 3.9 2.3 5.2 1 1.3-1 1-3.3-.7-5.2-1.6-1.6-3.9-2.3-5.2-1zm-10.8-8.1c-.7 1.3.3 2.9 2.3 3.9 1.6 1 3.6.7 4.3-.7.7-1.3-.3-2.9-2.3-3.9-2-.6-3.6-.3-4.3.7zm32.4 35.6c-1.6 1.3-1 4.3 1.3 6.2 2.3 2.3 5.2 2.6 6.5 1 1.3-1.3.7-4.3-1.3-6.2-2.2-2.3-5.2-2.6-6.5-1zm-11.4-14.7c-1.6 1-1.6 3.6 0 5.9 1.6 2.3 4.3 3.3 5.6 2.3 1.6-1.3 1.6-3.9 0-6.2-1.4-2.3-4-3.3-5.6-2z" />
14-
</svg>
15-
Suggest a feature
10+
<img src="https://img.icons8.com/ios/50/chrome--v1.png"
11+
alt="chrome"
12+
class="w-4 h-4 mr-1">
13+
Extension
14+
</a>
15+
<a href="https://pypi.org/project/gitingest/"
16+
target="_blank"
17+
rel="noopener noreferrer"
18+
class="hover:underline flex items-center">
19+
<img src="https://img.icons8.com/windows/32/python.png"
20+
alt="python"
21+
class="w-4 h-4 mr-1">
22+
Python package
1623
</a>
17-
</div>
18-
<!-- Middle column - Made with love -->
19-
<div class="flex flex-col justify-center items-center">
20-
<div class="flex items-center">
21-
made with ❤️ by
22-
<a href="https://x.com/romdot2"
23-
target="_blank"
24-
rel="noopener noreferrer"
25-
class="ml-1 hover:underline">@rom2</a>
26-
</div>
27-
<div class="flex items-center mt-1">
28-
Check out my
29-
<a href="https://pad.ws"
30-
target="_blank"
31-
rel="noopener noreferrer"
32-
referrerpolicy="origin"
33-
class="ml-1 hover:underline">latest project</a>
34-
</div>
3524
</div>
3625
<!-- Right column - Discord -->
3726
<div class="flex justify-end">

src/server/templates/components/navbar.jinja

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -34,25 +34,6 @@
3434
</div>
3535
<!-- Navigation with updated styling -->
3636
<nav class="flex items-center space-x-6">
37-
<!-- Simplified Chrome extension button -->
38-
<a href="https://chromewebstore.google.com/detail/git-ingest-turn-any-git-r/adfjahbijlkjfoicpjkhjicpjpjfaood"
39-
target="_blank"
40-
rel="noopener noreferrer"
41-
class="text-gray-900 hover:-translate-y-0.5 transition-transform flex items-center gap-1.5">
42-
<div class="flex items-center">
43-
<svg xmlns="http://www.w3.org/2000/svg"
44-
width="24"
45-
height="24"
46-
viewBox="0 0 50 50"
47-
fill="none"
48-
stroke="currentColor"
49-
stroke-width="3"
50-
class="w-4 h-4 mx-1">
51-
<path d="M 25 2 C 12.309295 2 2 12.309295 2 25 C 2 37.690705 12.309295 48 25 48 C 37.690705 48 48 37.690705 48 25 C 48 12.309295 37.690705 2 25 2 z M 25 4 C 32.987976 4 39.925645 8.44503 43.476562 15 L 25 15 A 1.0001 1.0001 0 0 0 24.886719 15.005859 C 19.738868 15.064094 15.511666 19.035373 15.046875 24.078125 L 8.0351562 12.650391 C 11.851593 7.4136918 18.014806 4 25 4 z M 6.8242188 14.501953 L 16.476562 30.230469 A 1.0001 1.0001 0 0 0 16.591797 30.388672 A 1.0001 1.0001 0 0 0 16.59375 30.392578 C 18.3752 33.158533 21.474925 35 25 35 C 26.413063 35 27.756327 34.701734 28.976562 34.169922 L 22.320312 45.824219 C 11.979967 44.509804 4 35.701108 4 25 C 4 21.169738 5.0375742 17.591533 6.8242188 14.501953 z M 25 17 C 29.430123 17 33 20.569877 33 25 C 33 26.42117 32.629678 27.751591 31.984375 28.90625 A 1.0001 1.0001 0 0 0 31.982422 28.908203 A 1.0001 1.0001 0 0 0 31.947266 28.966797 C 30.57172 31.37734 27.983486 33 25 33 C 20.569877 33 17 29.430123 17 25 C 17 20.569877 20.569877 17 25 17 z M 30.972656 17 L 44.421875 17 C 45.43679 19.465341 46 22.165771 46 25 C 46 36.609824 36.609824 46 25 46 C 24.842174 46 24.686285 45.991734 24.529297 45.988281 L 33.683594 29.958984 A 1.0001 1.0001 0 0 0 33.742188 29.841797 C 34.541266 28.405674 35 26.755664 35 25 C 35 21.728612 33.411062 18.825934 30.972656 17 z" />
52-
</svg>
53-
Extension
54-
</div>
55-
</a>
5637
<div class="flex items-center gap-2">
5738
<a href="https://github.com/cyclotruc/gitingest"
5839
target="_blank"

0 commit comments

Comments
 (0)