2026-05-12 16:34:58 +08:00
|
|
|
---
|
2026-05-18 15:39:38 +08:00
|
|
|
import { assetPath } from '../assets'
|
2026-05-13 13:46:21 +08:00
|
|
|
import type { Translations } from '../i18n/translations'
|
|
|
|
|
|
|
|
|
|
export interface Props {
|
|
|
|
|
t: Translations['footer']
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const { t } = Astro.props
|
2026-05-18 15:39:38 +08:00
|
|
|
const logoFull = assetPath("/assets/footer-logo.png");
|
2026-05-12 16:34:58 +08:00
|
|
|
---
|
|
|
|
|
|
2026-05-13 13:46:21 +08:00
|
|
|
<footer class="site-footer">
|
|
|
|
|
<div class="site-footer__inner">
|
|
|
|
|
<div class="site-footer__top">
|
|
|
|
|
<div class="site-footer__brand">
|
|
|
|
|
<div class="site-footer__logo-frame">
|
|
|
|
|
<img alt={t.logoAlt} class="site-footer__logo" src={logoFull} />
|
2026-05-12 17:14:50 +08:00
|
|
|
</div>
|
2026-05-13 13:46:21 +08:00
|
|
|
<p class="site-footer__description">
|
|
|
|
|
{t.description}
|
2026-05-12 17:14:50 +08:00
|
|
|
</p>
|
2026-05-12 16:34:58 +08:00
|
|
|
</div>
|
2026-05-12 17:14:50 +08:00
|
|
|
</div>
|
2026-05-12 16:34:58 +08:00
|
|
|
|
2026-05-13 13:46:21 +08:00
|
|
|
<div class="site-footer__divider"></div>
|
2026-05-12 16:34:58 +08:00
|
|
|
|
2026-05-13 13:46:21 +08:00
|
|
|
<div class="site-footer__bottom">
|
|
|
|
|
<p class="site-footer__legal">{t.copyright}</p>
|
|
|
|
|
<div class="site-footer__spacer"></div>
|
|
|
|
|
<p class="site-footer__legal">{t.legal}</p>
|
2026-05-12 17:14:50 +08:00
|
|
|
</div>
|
2026-05-12 16:34:58 +08:00
|
|
|
</div>
|
|
|
|
|
</footer>
|