Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: improve app's bootstrap HTML metadata #2168

Merged
merged 6 commits into from Apr 19, 2024
Merged
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 8 additions & 6 deletions public/index.html
Expand Up @@ -3,9 +3,10 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<meta name="theme-color" content="#0b3a53">
<meta name="generator" content="ipfs-webui https://github.com/ipfs-shipyard/ipfs-webui">
<meta name="revision" content="%REACT_APP_GIT_REV%">
<meta name="description" content="A web interface for IPFS. Check on your node stats, explore the IPLD powered merkle forest, see peers around the world and manage your files, without needing to touch the CLI.">
SgtPooki marked this conversation as resolved.
Show resolved Hide resolved
<!--
manifest.json provides metadata used when your web app is added to the
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
Expand All @@ -21,22 +22,23 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>IPFS</title>
<title>WebUI | IPFS</title>
<link rel="canonical" href="https://webui.ipfs.io/">
lidel marked this conversation as resolved.
Show resolved Hide resolved
</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>


<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.

You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.

To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
Expand Down