Skip to content

Commit bf29555

Browse files
authored
Merge pull request #381 from raifdmueller/add-augmented-coding-patterns-link
Add Augmented Coding Patterns link to footer
2 parents 333f716 + 094b601 commit bf29555

3 files changed

Lines changed: 15 additions & 6 deletions

File tree

website/src/components/footer.js

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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>

website/src/translations/de.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"footer.allAnchors": "Vollständige Referenz",
3636
"footer.rejectedProposals": "Abgelehnte Vorschläge",
3737
"footer.evaluations": "Evaluierungen",
38+
"footer.augmentedPatterns": "Augmented Coding Patterns",
3839
"categories.communication-presentation": "Kommunikation & Präsentation",
3940
"categories.design-principles": "Design-Prinzipien & Muster",
4041
"categories.development-workflow": "Entwicklungs-Workflow",

website/src/translations/en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"footer.allAnchors": "Full Reference",
3636
"footer.rejectedProposals": "Rejected Proposals",
3737
"footer.evaluations": "Evaluations",
38+
"footer.augmentedPatterns": "Augmented Coding Patterns",
3839
"categories.communication-presentation": "Communication & Presentation",
3940
"categories.design-principles": "Design Principles & Patterns",
4041
"categories.development-workflow": "Development Workflow",

0 commit comments

Comments
 (0)