-
-
-
- {formatDate(new Date(props.published))}{" "}
-
-
- {new Date(props.published).toLocaleTimeString()}
-
-
-
- {props.expand &&
- props.expand.tags &&
- props.expand.tags.map(
- (tag) =>
- tag && (
-
- #{tag.name}{" "}
-
- ),
- )}
-
-
-
- {props.content}
-
-
- );
-}
diff --git a/src/components/navbar.astro b/src/components/navbar.astro
index 7e99e6c..2a8bc31 100644
--- a/src/components/navbar.astro
+++ b/src/components/navbar.astro
@@ -1,8 +1,8 @@
---
-import { navItems } from "@/utils/nav-links";
-import MobileMenu from "@/components/mobile-menu";
import logo from "@/assets/logo.png";
import { Image } from "astro:assets";
+import { navItems } from "@/utils/nav-links";
+import MobileMenu from "@/components/mobile-menu";
import LinkButton from "@/components/link-button";
---
@@ -23,6 +23,7 @@ import LinkButton from "@/components/link-button";
src={logo}
width={80}
height={80}
+ loading="eager"
class="w-auto h-auto"
alt="juancmandev logo"
/>
@@ -31,7 +32,7 @@ import LinkButton from "@/components/link-button";