Skip to content

Commit

Permalink
chore: add logo #2
Browse files Browse the repository at this point in the history
  • Loading branch information
cvgellhorn committed Jul 19, 2024
1 parent e8dc14f commit 484955a
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions src/components/Logo.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,21 @@
import Image from './common/Image.astro';
---

<Image src="~/assets/images/sturmfrei-logo.svg" alt="AstroWind Hero Image" class="!max-h-8 md:!max-h-7 dark:hidden" />
<Image
src="~/assets/images/sturmfrei-logo.svg"
src="~/assets/images/sturmfrei-logo-dark.svg"
alt="AstroWind Hero Image"
class="!max-h-8 md:!max-h-7 hidden dark:inline"
/>
<!-- <img
src="~/assets/images/sturmfrei-logo.svg"
class="max-h-8 md:max-h-7 dark:hidden"
layout="responsive"
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<Image
<img
src="~/assets/images/sturmfrei-logo-dark.svg"
alt="AstroWind Hero Image"
class="max-h-8 md:max-h-7 hidden dark:inline"
layout="responsive"
/>
crossorigin="anonymous"
referrerpolicy="no-referrer"
/> -->

0 comments on commit 484955a

Please sign in to comment.