mirror of
https://github.com/sern-handler/website
synced 2026-06-24 08:42:31 +00:00
17 lines
331 B
Plaintext
17 lines
331 B
Plaintext
---
|
|
import { PAGE_TITLE_ID } from '../constants';
|
|
import type { Props } from '../props';
|
|
---
|
|
|
|
<h1 id={PAGE_TITLE_ID}>{Astro.props.entry.data.title}</h1>
|
|
|
|
<style>
|
|
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>
|