From 33f1c1fcc21d503b9fd05f65c04c15bb7181adc7 Mon Sep 17 00:00:00 2001 From: AnnatarHe Date: Sat, 25 Apr 2026 00:07:05 +0800 Subject: [PATCH] feat(footer): add Evonia.ai company branding Add a subtle "Powered by Evonia.ai" link with logo in the footer to attribute the parent company. URL lives in a constant so it can change without touching templates. Ship a dark-background variant of the logo so it reads on the black footer. Co-Authored-By: Claude Opus 4.7 (1M context) --- public/evonia/logo-dark.svg | 26 ++++++++++++++++++++++++++ public/evonia/logo.svg | 28 ++++++++++++++++++++++++++++ src/components/footer.astro | 14 ++++++++++++-- src/constants.ts | 6 ++++++ 4 files changed, 72 insertions(+), 2 deletions(-) create mode 100644 public/evonia/logo-dark.svg create mode 100644 public/evonia/logo.svg diff --git a/public/evonia/logo-dark.svg b/public/evonia/logo-dark.svg new file mode 100644 index 0000000..5971508 --- /dev/null +++ b/public/evonia/logo-dark.svg @@ -0,0 +1,26 @@ + + Smart Shell Cloud Logo + A soft blue cloud, terminal prompt, and stacked platform logo mark. + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/evonia/logo.svg b/public/evonia/logo.svg new file mode 100644 index 0000000..361514e --- /dev/null +++ b/public/evonia/logo.svg @@ -0,0 +1,28 @@ + + Smart Shell Cloud Logo + A soft blue cloud, terminal prompt, and stacked platform logo mark. + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/components/footer.astro b/src/components/footer.astro index d3e0d73..3051883 100644 --- a/src/components/footer.astro +++ b/src/components/footer.astro @@ -1,8 +1,8 @@ --- -import { authors } from "../constants"; +import { authors, evonia } from "../constants"; --- -