-
Notifications
You must be signed in to change notification settings - Fork 0
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
299c487
commit ac40a97
Showing
13 changed files
with
102 additions
and
4 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="manifest" href="/manifest.webmanifest" crossorigin="use-credentials" /> | ||
<link rel="apple-touch-startup-image" href="/logo.png"> | ||
<title>CarbonQuest</title> | ||
<script type="module" crossorigin src="/assets/index-a37fde6a.js"></script> | ||
<link rel="stylesheet" href="/assets/index-30b0bbee.css"> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
|
||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"name": "CarbonQuest", | ||
"short_name": "CarbonQuest", | ||
"start_url": "/", | ||
"display": "standalone", | ||
"description": "An app to track and reduce your carbon footprint.", | ||
"lang": "English", | ||
"dir": "auto", | ||
"theme_color": "#ffffff", | ||
"background_color": "#ffffff", | ||
"orientation": "portrait", | ||
"icons": [ | ||
{ | ||
"src": "/logo.png", | ||
"sizes": "512x512", | ||
"type": "image/png", | ||
"purpose": "maskable" | ||
}, | ||
{ | ||
"src": "/logo.png", | ||
"sizes": "192x192", | ||
"type": "image/png", | ||
"purpose": "any" | ||
} | ||
], | ||
"screenshots": [ | ||
{ | ||
"src": "https://www.pwabuilder.com/assets/screenshots/screen1.png", | ||
"sizes": "2880x1800", | ||
"type": "image/png", | ||
"description": "A screenshot of the home page" | ||
} | ||
], | ||
"related_applications": [ | ||
{ | ||
"platform":"windows", | ||
"url": " The URL to your app in that app store" | ||
} | ||
], | ||
"prefer_related_applications": false, | ||
"shortcuts": [ | ||
{ | ||
"name":"The name you would like to be displayed for your shortcut", | ||
"url":"The url you would like to open when the user chooses this shortcut. This must be a URL local to your PWA. For example: If my start_url is /, this URL must be something like /shortcut", | ||
"description":"A description of the functionality of this shortcut" | ||
} | ||
] | ||
} |
Oops, something went wrong.