dev vouch dev on at. thats about it atvouch.dev
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

font in website

Luna 9f541dd8 2a6e8787

+35 -3
-2
frontend/index.html
··· 3 3 <head> 4 4 <meta charset="UTF-8" /> 5 5 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 6 - <link rel="preconnect" href="https://fonts.googleapis.com" /> 7 - <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> 8 6 <title>atvouch</title> 9 7 </head> 10 8 <body>
frontend/public/fonts/DM-Sans-400.ttf

This is a binary file and will not be displayed.

frontend/public/fonts/DM-Sans-500.ttf

This is a binary file and will not be displayed.

frontend/public/fonts/DM-Sans-700.ttf

This is a binary file and will not be displayed.

frontend/public/fonts/JetBrains-Mono-400.ttf

This is a binary file and will not be displayed.

frontend/public/fonts/JetBrains-Mono-700.ttf

This is a binary file and will not be displayed.

+35 -1
frontend/src/App.css
··· 1 - @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=JetBrains+Mono:wght@400;700&display=swap'); 1 + @font-face { 2 + font-family: 'DM Sans'; 3 + font-weight: 400; 4 + font-style: normal; 5 + font-display: swap; 6 + src: url('/fonts/DM-Sans-400.ttf') format('truetype'); 7 + } 8 + @font-face { 9 + font-family: 'DM Sans'; 10 + font-weight: 500; 11 + font-style: normal; 12 + font-display: swap; 13 + src: url('/fonts/DM-Sans-500.ttf') format('truetype'); 14 + } 15 + @font-face { 16 + font-family: 'DM Sans'; 17 + font-weight: 700; 18 + font-style: normal; 19 + font-display: swap; 20 + src: url('/fonts/DM-Sans-700.ttf') format('truetype'); 21 + } 22 + @font-face { 23 + font-family: 'JetBrains Mono'; 24 + font-weight: 400; 25 + font-style: normal; 26 + font-display: swap; 27 + src: url('/fonts/JetBrains-Mono-400.ttf') format('truetype'); 28 + } 29 + @font-face { 30 + font-family: 'JetBrains Mono'; 31 + font-weight: 700; 32 + font-style: normal; 33 + font-display: swap; 34 + src: url('/fonts/JetBrains-Mono-700.ttf') format('truetype'); 35 + } 2 36 3 37 :root { 4 38 --bg: #0c0c0c;