diff --git a/src/content/blog/dunky-the-journey.mdx b/src/content/blog/dunky-the-journey.mdx index ce9d136..11bce7e 100644 --- a/src/content/blog/dunky-the-journey.mdx +++ b/src/content/blog/dunky-the-journey.mdx @@ -1,5 +1,5 @@ --- -title: "Dunky: The Journey" +title: 'Dunky: The Journey' description: Built from the ground up for the design systems. One source of truth, that travels across any UI without rewiring. date: 2026-06-26 banner: /blog/introducing-dunky-banner.jpg diff --git a/src/layouts/base.astro b/src/layouts/base.astro index 663bf07..1a38335 100644 --- a/src/layouts/base.astro +++ b/src/layouts/base.astro @@ -10,6 +10,7 @@ interface Props { const { title, description = 'Dunky: DX tools that unlock powerful UIs.' } = Astro.props const pathname = Astro.url.pathname const isHome = pathname === '/' +const isBlogPost = pathname.startsWith('/blog/') && pathname !== '/blog/' --- @@ -24,23 +25,27 @@ const isHome = pathname === '/'
- {!isHome && ( - - - - )} - - - GitHub - - - - Twitter - - - - Blog - +
+ {isBlogPost && ( + + )} + +