forked from emre/www_projectmycelium_com
		
	- Added Google Fonts stylesheet link to load Mulish font with weights 400, 500, and 700 - Included preconnect links for optimal font loading performance
		
			
				
	
	
		
			18 lines
		
	
	
		
			811 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			811 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html lang="en">
 | 
						|
  <head>
 | 
						|
    <meta charset="UTF-8" />
 | 
						|
    <link rel="icon" type="image/x-icon" href="/favicon.ico" />
 | 
						|
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | 
						|
    <title>Project Mycelium - Unleash the Power of Decentralized Networks</title>
 | 
						|
    <meta name="description" content="Project Mycelium's technology enables anyone to deploy their own Internet infrastructure, anywhere." />
 | 
						|
    <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=Mulish:wght@400;500;700&display=swap" rel="stylesheet" />
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    <div id="root"></div>
 | 
						|
    <script type="module" src="/src/main.tsx"></script>
 | 
						|
  </body>
 | 
						|
</html>
 |