We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2cd53f commit ce43cd0Copy full SHA for ce43cd0
1 file changed
apps/marketing/src/layouts/Layout.astro
@@ -1,4 +1,6 @@
1
---
2
+import { Image } from "astro:assets";
3
+
4
interface Props {
5
title?: string;
6
description?: string;
@@ -31,7 +33,14 @@ const {
31
33
<div class="page">
32
34
<nav class="nav">
35
<a href="/" class="nav-brand">
- <img src="/icon.png" alt="T3" class="nav-icon" />
36
+ <Image
37
+ src="/icon.png"
38
+ alt="T3"
39
+ width={28}
40
+ height={28}
41
+ priority
42
+ class="nav-icon"
43
+ />
44
</a>
45
<a
46
href="https://github.com/pingdotgg/t3code"
0 commit comments