summaryrefslogtreecommitdiffstats
path: root/themes/danix-xyz-hacker/layouts/partials/footer.html
blob: fb02f8848bae3be2c6867cc538693e91ac911b4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<footer class="mt-16 border-t py-12" style="background-color: rgba(var(--bg2-rgb), 0.85); box-shadow: 0 0 20px var(--accent-glow);">
  <div class="container mx-auto px-4">
    <div class="grid md:grid-cols-3 gap-8 mb-8">
      <!-- About -->
      <div>
        <h3 class="font-bold text-accent mb-3 font-oxanium">{{ .Site.Title }}</h3>
        <p class="text-sm text-text-dim">{{ .Site.Params.siteDescription }}</p>
      </div>

      <!-- Quick links -->
      <div>
        <h4 class="font-semibold text-accent mb-3">{{ i18n "links" }}</h4>
        <ul class="space-y-2">
          {{ range .Site.Menus.main }}
            <li>
              <a href="{{ .URL }}" class="text-sm text-text-dim hover:text-accent transition-colors">
                {{ i18n .Name }}
              </a>
            </li>
          {{ end }}
        </ul>
      </div>

      <!-- Social (if configured) -->
      <div>
        <h4 class="font-semibold text-accent mb-3">{{ i18n "contact" }}</h4>
        <a href="mailto:{{ .Site.Params.email }}" class="text-sm text-text-dim hover:text-accent transition-colors">
          {{ i18n "email" }}: {{ .Site.Params.email }}
        </a>
      </div>
    </div>

    <!-- Copyright -->
    <div class="pt-8 border-t border-border text-center text-xs text-text-dim">
      <p>&copy; {{ now.Year }} {{ .Site.Params.author }}. {{ i18n "allRightsReserved" }}</p>
    </div>
  </div>
</footer>