Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions public/evonia/logo-dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions public/evonia/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 12 additions & 2 deletions src/components/footer.astro
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
import { authors } from "../constants";
import { authors, evonia } from "../constants";
---

<footer class="bg-black p-4 w-full flex justify-center items-center flex-col">
<footer class="bg-black p-4 w-full flex justify-center items-center flex-col gap-3">
<ul
class="max-w-screen-lg w-full text-xs text-teal-500 flex items-center justify-evenly"
>
Expand All @@ -23,4 +23,14 @@ import { authors } from "../constants";
})
}
</ul>

<a
href={evonia.url}
target="_blank"
rel="noopener noreferrer"
class="flex items-center gap-1.5 text-[10px] text-white/40 hover:text-white/70 transition-colors duration-100"
>
<img src={evonia.logo} alt={evonia.name} width="14" height="14" />
<span>Powered by {evonia.name}</span>
</a>
</footer>
6 changes: 6 additions & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,9 @@ export const authors = [{
name: '小鹿',
link: null
}]

export const evonia = {
name: 'Evonia.ai',
url: 'https://evoniaai.github.io/',
logo: '/evonia/logo-dark.svg',
} as const;
Loading