Fix font
This commit is contained in:
parent
a709eec8f0
commit
7c75e51e2e
1 changed files with 7 additions and 2 deletions
|
@ -16,8 +16,13 @@ const { title } = Astro.props;
|
||||||
<title>{title}</title>
|
<title>{title}</title>
|
||||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
<link
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
rel="preload"
|
||||||
|
href="/fonts/Ysabeau[wght].ttf"
|
||||||
|
as="font"
|
||||||
|
type="font/ttf"
|
||||||
|
crossorigin
|
||||||
|
/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<slot />
|
<slot />
|
||||||
|
|
Loading…
Reference in a new issue