Skip to content

Commit 3d67df4

Browse files
committed
Favicon, meta desc, relocate data
1 parent 3b835c9 commit 3d67df4

11 files changed

Lines changed: 7 additions & 5 deletions

webapp/index.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
5+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
6+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
7+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
68
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Historical GitHub Status Charts</title>
9+
<title>Historical GitHub Uptime Charts</title>
10+
<meta name="description" content="View GitHub's monthly uptime between 2016 and 2026.">
811
</head>
912
<body>
1013
<div id="root"></div>
8.17 KB
Loading
22.7 KB
Loading

webapp/public/apple-touch-icon.png

7.29 KB
Loading
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../historical-data.json

webapp/public/favicon-16x16.png

345 Bytes
Loading

webapp/public/favicon-32x32.png

817 Bytes
Loading

webapp/public/favicon.ico

15 KB
Binary file not shown.

webapp/public/historical-data.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

webapp/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export const HistoricalDataView = () => {
1616
const { isPending, error, data } = useQuery({
1717
queryKey: ["chart-main"],
1818
queryFn: () =>
19-
fetch(`${import.meta.env.BASE_URL}historical-data.json`).then((res) =>
19+
fetch(`${import.meta.env.BASE_URL}data/historical-data.json`).then((res) =>
2020
res.json()
2121
)
2222
});

0 commit comments

Comments
 (0)