@@ -4,11 +4,8 @@ export function renderFooter(version) {
44 return `
55 <footer class="border-t border-[var(--color-border)] bg-[var(--color-bg)] transition-colors duration-300">
66 <div class="mx-auto max-w-7xl px-4 py-4 sm:px-6 lg:px-8">
7- <div class="flex flex-col items-center justify-between gap-2 sm:flex-row">
8- <p class="text-sm text-[var(--color-text-secondary)]" data-i18n="footer.tagline">
9- ${ i18n . t ( 'footer.tagline' ) }
10- </p>
11- <div class="flex items-center gap-4">
7+ <div class="flex flex-col items-center gap-2">
8+ <div class="flex flex-wrap items-center justify-center gap-4">
129 <a
1310 href="https://github.com/LLM-Coding/Semantic-Anchors/stargazers"
1411 target="_blank"
@@ -47,14 +44,24 @@ export function renderFooter(version) {
4744 class="text-sm text-[var(--color-text-secondary)] hover:text-[var(--color-text)] transition-colors"
4845 data-i18n="footer.evaluations"
4946 >${ i18n . t ( 'footer.evaluations' ) } </a>
50- <span class="text-gray-300 dark:text-gray-600">|</span>
47+ </div>
48+ <div class="flex flex-wrap items-center justify-center gap-4">
5149 <a
5250 href="https://github.com/LLM-Coding/Semantic-Anchors"
5351 target="_blank"
5452 rel="noopener noreferrer"
5553 class="text-sm text-[var(--color-text-secondary)] hover:text-[var(--color-text)] transition-colors"
5654 data-i18n="footer.github"
5755 >${ i18n . t ( 'footer.github' ) } </a>
56+ <span class="text-gray-300 dark:text-gray-600">|</span>
57+ <a
58+ href="https://lexler.github.io/augmented-coding-patterns/"
59+ target="_blank"
60+ rel="noopener noreferrer"
61+ class="text-sm text-[var(--color-text-secondary)] hover:text-[var(--color-text)] transition-colors"
62+ data-i18n="footer.augmentedPatterns"
63+ >${ i18n . t ( 'footer.augmentedPatterns' ) } </a>
64+ <span class="text-gray-300 dark:text-gray-600">|</span>
5865 <span class="text-xs text-[var(--color-text-secondary)]">v${ version } </span>
5966 </div>
6067 </div>
0 commit comments