-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ca8fe32
commit 576e407
Showing
2 changed files
with
76 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,73 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Asteroid Protocol | Inscribe anything on the Hub</title> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<title>Asteroid Protocol | Inscribe anything on the Hub</title> | ||
<base href="/" /> | ||
|
||
<base href="/" /> | ||
<meta name="color-scheme" content="light dark" /> | ||
<meta | ||
name="viewport" | ||
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" | ||
/> | ||
<meta name="format-detection" content="telephone=no" /> | ||
<meta name="msapplication-tap-highlight" content="no" /> | ||
|
||
<meta name="color-scheme" content="light dark" /> | ||
<meta name="viewport" | ||
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | ||
<meta name="format-detection" content="telephone=no" /> | ||
<meta name="msapplication-tap-highlight" content="no" /> | ||
<meta | ||
name="description" | ||
content="Asteroid Protocol allows you to inscribe anything on the Hub" | ||
/> | ||
<!-- theme --> | ||
<meta name="theme-color" content="#06011e" /> | ||
<meta name="twitter:card" content="summary_large_image" /> | ||
<meta property="twitter:domain" content="asteroidprotocol.io" /> | ||
|
||
<meta name="description" content="Asteroid Protocol allows you to inscribe anything on the Hub" /> | ||
<!-- theme --> | ||
<meta name="theme-color" content="#06011e" /> | ||
<link | ||
rel="apple-touch-icon" | ||
sizes="180x180" | ||
href="assets/icon/apple-touch-icon.png" | ||
/> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
sizes="32x32" | ||
href="assets/icon//favicon-32x32.png" | ||
/> | ||
<link | ||
rel="icon" | ||
type="image/png" | ||
sizes="16x16" | ||
href="assets/icon//favicon-16x16.png" | ||
/> | ||
<link rel="manifest" href="assets/site.webmanifest" /> | ||
|
||
<link rel="apple-touch-icon" sizes="180x180" href="assets/icon/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="assets/icon//favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="assets/icon//favicon-16x16.png"> | ||
<link rel="manifest" href="assets/site.webmanifest"> | ||
<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=Nunito+Sans:opsz,[email protected],300;6..12,400;6..12,500&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@300&display=swap" | ||
rel="stylesheet" | ||
/> | ||
|
||
<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=Nunito+Sans:opsz,[email protected],300;6..12,400;6..12,500&display=swap" | ||
rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@300&display=swap" rel="stylesheet"> | ||
|
||
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400&display=swap" rel="stylesheet"> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400&display=swap" | ||
rel="stylesheet" | ||
/> | ||
|
||
<!-- <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=Inter:wght@300;400;600&display=swap" rel="stylesheet"> --> | ||
|
||
<!-- add to homescreen for ios --> | ||
<meta name="apple-mobile-web-app-capable" content="yes" /> | ||
<meta name="apple-mobile-web-app-status-bar-style" content="black" /> | ||
</head> | ||
|
||
<body> | ||
<app-root></app-root> | ||
</body> | ||
<!-- add to homescreen for ios --> | ||
<meta name="apple-mobile-web-app-capable" content="yes" /> | ||
<meta name="apple-mobile-web-app-status-bar-style" content="black" /> | ||
</head> | ||
|
||
</html> | ||
<body> | ||
<app-root></app-root> | ||
</body> | ||
</html> |