Remove fonts and theme

This commit is contained in:
Maxi Ferreira 2022-08-12 11:40:16 -07:00
parent 7d27710b7c
commit 23f0462f15
2 changed files with 3 additions and 3 deletions

View File

@ -37,9 +37,9 @@ const socialUrl = Astro.site.href + 'assets/social.png'
<meta property="twitter:image" content={socialUrl} />
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<!-- <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@700&family=Merriweather:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@700&family=Merriweather:wght@400;700&display=swap" rel="stylesheet"> -->
<!-- This is intentionally inlined to avoid FOUC -->
<script>

View File

@ -58,6 +58,6 @@ const { current = '' } = Astro.props;
<a class={current === "about" ? "selected" : ""} href='/about'>about</a>
<a class={current === "blog" ? "selected" : ""} href='/blog'>blog</a>
<div class="theme-toggle-container">
<ThemeToggleButton client:load />
<!-- <ThemeToggleButton client:load /> -->
</div>
</nav>