SiteTitle.astro 613 B

123456789101112131415161718192021222324
  1. ---
  2. // Starlight 0.39 exposes route data on Astro.locals.starlightRoute (not props).
  3. // Link the wordmark to the landing page at the site root.
  4. const { siteTitle } = Astro.locals.starlightRoute;
  5. const base = import.meta.env.BASE_URL.replace(/\/$/, '');
  6. ---
  7. <a href={`${base}/`} class="cg-site-title" translate="no">{siteTitle}</a>
  8. <style>
  9. .cg-site-title {
  10. font-family: var(--sl-font);
  11. font-weight: 800;
  12. font-size: 1.25rem;
  13. letter-spacing: -0.025em;
  14. line-height: 1;
  15. color: var(--cg-ink);
  16. text-decoration: none;
  17. white-space: nowrap;
  18. }
  19. .cg-site-title:hover {
  20. color: var(--cg-ink);
  21. }
  22. </style>