From d729a2b829323483ce35e8058d906e7d1ab79df7 Mon Sep 17 00:00:00 2001 From: 9a0ffedc5b31823b Date: Sun, 3 May 2026 09:41:40 +0000 Subject: [PATCH] feat: add juozas auto logo --- public/favicon.svg | 6 ++++++ src/components/Footer.astro | 3 ++- src/components/Header.astro | 3 ++- src/components/Logo.astro | 23 ++++++++++++++++++++++ src/layouts/BaseLayout.astro | 1 + tests/logo.test.ts | 37 ++++++++++++++++++++++++++++++++++++ 6 files changed, 71 insertions(+), 2 deletions(-) create mode 100644 public/favicon.svg create mode 100644 src/components/Logo.astro create mode 100644 tests/logo.test.ts diff --git a/public/favicon.svg b/public/favicon.svg new file mode 100644 index 0000000..2faaaf2 --- /dev/null +++ b/public/favicon.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 0ce5d0b..3fe268a 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -1,11 +1,12 @@ --- import { EMAIL, HOURS, PHONE_DISPLAY } from '../lib/contact'; +import Logo from './Logo.astro'; ---