We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 12671d0 + 97043b4 commit 7d6f161Copy full SHA for 7d6f161
2 files changed
src/assets/images/logo.png
16.8 KB
src/components/Logo.astro
@@ -1,9 +1,19 @@
1
---
2
import { SITE } from 'astrowind:config';
3
+import logo from '~/assets/images/logo.png';
4
+import Image from '~/components/common/Image.astro';
5
6
7
<span
8
class="self-center ml-2 rtl:ml-0 rtl:mr-2 text-2xl md:text-xl font-bold text-gray-900 whitespace-nowrap dark:text-white"
9
>
- 🚀 {SITE?.name}
10
+ {
11
+ <Image
12
+ src={logo}
13
+ alt="Hackiit"
14
+ width={80}
15
+ class="mx-auto rounded-md w-full"
16
+ inferSize={true}
17
+ />
18
+ }
19
</span>
0 commit comments