diff options
| author | Volpeon <git@volpeon.ink> | 2026-07-22 19:40:59 +0200 |
|---|---|---|
| committer | Volpeon <git@volpeon.ink> | 2026-07-22 19:40:59 +0200 |
| commit | c1e28224aa2e1450031669d9a7e359b63e04687d (patch) | |
| tree | 68f3d8905c763a91f68001d868197effa92adafa /src/ui/components/SiteFooter.tsx | |
| download | corvos-website-c1e28224aa2e1450031669d9a7e359b63e04687d.tar.gz corvos-website-c1e28224aa2e1450031669d9a7e359b63e04687d.tar.bz2 corvos-website-c1e28224aa2e1450031669d9a7e359b63e04687d.zip | |
Init
Diffstat (limited to 'src/ui/components/SiteFooter.tsx')
| -rw-r--r-- | src/ui/components/SiteFooter.tsx | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/ui/components/SiteFooter.tsx b/src/ui/components/SiteFooter.tsx new file mode 100644 index 0000000..8bada2e --- /dev/null +++ b/src/ui/components/SiteFooter.tsx | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | import site from "@/corvos.config.ts"; | ||
| 2 | |||
| 3 | import { Container } from "../layouts/Container.tsx"; | ||
| 4 | import { Divider } from "../objects/Divider.tsx"; | ||
| 5 | import { Logo } from "./Logo.tsx"; | ||
| 6 | |||
| 7 | export const SiteFooter = async () => { | ||
| 8 | const symbols = await site.load("assets/symbols.svg"); | ||
| 9 | |||
| 10 | return ( | ||
| 11 | <footer class="c-site-footer"> | ||
| 12 | <div class="c-site-footer__banner"> | ||
| 13 | <svg class="c-site-footer__banner-img"> | ||
| 14 | <use href={`${symbols.url}#site-footer`} /> | ||
| 15 | </svg> | ||
| 16 | |||
| 17 | <svg class="c-site-footer__banner-bg"> | ||
| 18 | <use href={`${symbols.url}#site-footer-bg`} /> | ||
| 19 | </svg> | ||
| 20 | </div> | ||
| 21 | |||
| 22 | <div class="c-site-footer__content-wrap t-static-white"> | ||
| 23 | <Container class="c-site-footer__content" fixed="150" pad-block pad-inline> | ||
| 24 | <div class="c-site-footer__sections"> | ||
| 25 | <section class="c-site-footer__section s-links s-links--mark-external s-links--static-white"> | ||
| 26 | Developed by <a href="https://volpeon.ink/">Volpeon</a> | ||
| 27 | </section> | ||
| 28 | </div> | ||
| 29 | |||
| 30 | <Divider class="c-site-footer__divider" level="quiet" variant="static-white" /> | ||
| 31 | |||
| 32 | <section class="c-site-footer__logo"> | ||
| 33 | <Logo size="lg" variant="static-white" /> | ||
| 34 | </section> | ||
| 35 | </Container> | ||
| 36 | </div> | ||
| 37 | </footer> | ||
| 38 | ); | ||
| 39 | }; | ||
