daidaibg
2022-10-10 a44105de2e57b676280f175237e3f2e2c017db6a
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
39
40
41
42
43
44
45
46
47
48
<script setup lang="ts">
import Avatar from "~/assets/avatar.jpg";
</script>
 
<template>
  <footer
    class="footer footer-center sticky bottom-0 border-t border-base-100 bg-base-200 px-4 pt-2 text-base-content opacity-90"
  >
    <div class="flex w-full max-w-6xl flex-row items-center justify-between gap-6">
      <a
        href="https://github.com/kirklin"
        target="_blank"
        rel="nofollow"
        class="inline-flex items-center justify-center hover:opacity-90"
      ><div class="avatar mr-3">
         <div class="mask mask-squircle h-14 w-14 bg-neutral p-px">
           <img
             width="54"
             height="54"
             :src="Avatar"
             alt="Kirk Lin"
             class="mask mask-squircle"
           >
         </div>
       </div>
        <div class="text-left">
          <p class="text-xs text-base-content text-opacity-50">Created by</p>
          <h2 class="text-lg font-bold text-base-content">Kirk Lin</h2>
        </div>
      </a>
      <div class="flex flex-col items-center gap-4 text-left sm:flex-row">
        <div class="flex gap-4 pb-4">
          <a
            href="https://github.com/kirklin/vite-boot"
            target="_blank"
            rel="nofollow"
            class="flex w-[130px] flex-col items-center rounded bg-base-100"
          >
            <h3 class="p-2 text-xs font-bold text-base-content/50">viteBoot™</h3>
            <p class="px-1.5 py-2 text-xs tracking-tighter text-base-content/50">
              All Rights Reserved.
            </p>
          </a>
        </div>
      </div>
    </div>
  </footer>
</template>