favicon değiştirildi ve font dosyası lokale alındı

This commit is contained in:
Yusuf İpek
2021-08-20 10:41:54 +03:00
parent 1d9587b54d
commit 983821fb60
5 changed files with 11 additions and 1 deletions
+6
View File
@@ -12,6 +12,12 @@ export default function App({ rehberler }) {
content="Teknoloji rehberleri. Reklam ve izleyici yok!" content="Teknoloji rehberleri. Reklam ve izleyici yok!"
/> />
<link rel="icon" href="/favicon.ico" /> <link rel="icon" href="/favicon.ico" />
<link
rel="preload"
href="/fonts/NunitoSansRegular.ttf"
as="font"
crossOrigin=""
/>
</Head> </Head>
<Home rehberler={rehberler} /> <Home rehberler={rehberler} />
</div> </div>
Binary file not shown.

Before

Width:  |  Height:  |  Size: 268 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.
+5 -1
View File
@@ -17,4 +17,8 @@
@import "./pages/rehber.scss"; @import "./pages/rehber.scss";
@import "./pages/404.scss"; @import "./pages/404.scss";
@import url("https://fontlibrary.org//face/nunito-sans"); @font-face {
font-family: "NunitoSansRegular";
src: url("/fonts/NunitoSansRegular.ttf");
font-display: swap;
}