33 lines
702 B
Text
33 lines
702 B
Text
---
|
|
const currentYear = new Date().getFullYear()
|
|
---
|
|
|
|
<footer class="flex flex-wrap items-center gap-1 py-10">
|
|
<p>© {currentYear}</p>
|
|
|
|
{
|
|
[
|
|
{
|
|
text: "Designed By",
|
|
link: "https://sunguoqi.com",
|
|
label: "Guoqi Sun",
|
|
},
|
|
{
|
|
text: "Powered By",
|
|
link: "https://github.com/sun0225SUN/astro-air",
|
|
label: "Astro Air",
|
|
},
|
|
].map((item, index) => (
|
|
<>
|
|
{index > 0 && <p class="mx-1">|</p>}
|
|
<p>{item.text}</p>
|
|
<a
|
|
href={item.link}
|
|
class="text-blue-600 transition-colors duration-200 hover:text-blue-800"
|
|
>
|
|
{item.label}
|
|
</a>
|
|
</>
|
|
))
|
|
}
|
|
</footer>
|