Skip to content

Commit b0d6ee8

Browse files
v0.0.3
1 parent e143026 commit b0d6ee8

File tree

11 files changed

+46
-1
lines changed

11 files changed

+46
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88

99
## Version History
1010

11+
### v0.0.3
12+
13+
- Added all favicon files and links.
14+
1115
### v0.0.2
1216

1317
- Migrated progress from the lunchbox repository.

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.0.2",
2+
"version": "0.0.3",
33
"tasks": {
44
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
55
"dev": "deno run -A --watch=static/,routes/ dev.ts",

routes/_app.tsx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,23 @@ export default function App({ Component }: PageProps) {
1010
<title>init</title>
1111
<link rel="stylesheet" href="/styles.css" />
1212
<link rel="stylesheet" href="/animation.css" />
13+
14+
{/* Favicon Links */}
15+
<link
16+
rel="icon"
17+
type="image/png"
18+
href="favicon/favicon-96x96.png"
19+
sizes="96x96"
20+
/>
21+
<link rel="icon" type="image/svg+xml" href="favicon/favicon.svg" />
22+
<link rel="shortcut icon" href="favicon/favicon.ico" />
23+
<link
24+
rel="apple-touch-icon"
25+
sizes="180x180"
26+
href="favicon/apple-touch-icon.png"
27+
/>
28+
<meta name="apple-mobile-web-app-title" content="Lunchbox" />
29+
<link rel="manifest" href="favicon/site.webmanifest" />
1330
</head>
1431
<Body>
1532
<Component />

static/assets/grain.jpg

349 KB
Loading

static/favicon/apple-touch-icon.png

34.5 KB
Loading

static/favicon/favicon-96x96.png

20.6 KB
Loading

static/favicon/favicon.ico

14.7 KB
Binary file not shown.

static/favicon/favicon.svg

Lines changed: 3 additions & 0 deletions
Loading

static/favicon/site.webmanifest

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "Lunchbox",
3+
"short_name": "lunchbox",
4+
"icons": [
5+
{
6+
"src": "/web-app-manifest-192x192.png",
7+
"sizes": "192x192",
8+
"type": "image/png",
9+
"purpose": "maskable"
10+
},
11+
{
12+
"src": "/web-app-manifest-512x512.png",
13+
"sizes": "512x512",
14+
"type": "image/png",
15+
"purpose": "maskable"
16+
}
17+
],
18+
"theme_color": "#241f26",
19+
"background_color": "#241f26",
20+
"display": "standalone"
21+
}
22 KB
Loading

0 commit comments

Comments
 (0)