mirror of
https://github.com/mikkelsvartveit/astro-personal-website.git
synced 2025-12-22 11:12:38 +00:00
Fix font issue
This commit is contained in:
parent
86844ef93d
commit
61d9050df2
1 changed files with 10 additions and 7 deletions
|
|
@ -16,21 +16,24 @@ const fullTitle = `${title ? title + " – " : ""}Mikkel Svartveit`;
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="/favicon.png" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<title>{fullTitle}</title>
|
||||
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<meta
|
||||
name="description"
|
||||
content={description ??
|
||||
"Hi, I'm Mikkel! I am a Computer Science student from Norway and this is my playground. Here you will find some programming projects, and a small collection of photos I'm proud of."}
|
||||
/>
|
||||
<meta name="theme-color" content={themeColor ?? "#facc15"} />
|
||||
<ViewTransitions fallback="none" />
|
||||
|
||||
<style>
|
||||
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&family=Source+Code+Pro&family=Source+Serif+Pro:wght@300;400;600&display=swap");
|
||||
</style>
|
||||
<link rel="icon" href="/favicon.png" />
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&family=Source+Code+Pro&family=Source+Serif+Pro:wght@300;400;600&display=swap"
|
||||
/>
|
||||
|
||||
<ViewTransitions fallback="none" />
|
||||
</head>
|
||||
|
||||
<body class={`bg-gray-50 ${hideScrollbar ? "" : "overflow-y-scroll"}`}>
|
||||
|
|
|
|||
Loading…
Reference in a new issue