aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components/starlight/PageTitle.astro
blob: 352e1c3c1c756ab49ae22ec5d9e4ad9c68da221f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
---
import Breadcrumbs from './Breadcrumbs.astro';
---

{Astro.url.pathname !== "/" && (
  <>
    <div id="_top">
      <Breadcrumbs />
    </div>
    <h1>{Astro.locals.starlightRoute.entry.data.title}</h1>
  </>
)}

<style>
  @layer starlight.core {
    h1 {
      margin-top: 1rem;
      font-size: var(--sl-text-h1);
      line-height: var(--sl-line-height-headings);
      font-weight: 600;
      color: var(--sl-color-white);
    }
  }
</style>