Update to use MooreForge Sensor Station

This commit is contained in:
William Moore 2023-01-19 17:21:22 -06:00
parent 50cb9c2816
commit b71b01d785
3 changed files with 6 additions and 6 deletions

View File

@ -7,7 +7,7 @@
<meta name="theme-color" content="#000000" /> <meta name="theme-color" content="#000000" />
<meta <meta
name="description" name="description"
content="MooreForge weather station of sensors" content="MooreForge station of sensors"
/> />
<!-- <!--
manifest.json provides metadata used when your web app is installed on a manifest.json provides metadata used when your web app is installed on a
@ -23,7 +23,7 @@
work correctly both with client-side routing and a non-root public URL. 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`. Learn how to configure a non-root public URL by running `npm run build`.
--> -->
<title>MooreForge Weather Station</title> <title>MooreForge Sensor Station</title>
</head> </head>
<body> <body>
<noscript>You need to enable JavaScript to run this app.</noscript> <noscript>You need to enable JavaScript to run this app.</noscript>

View File

@ -1,6 +1,6 @@
{ {
"short_name": "Weather Station", "short_name": "Sensor Station",
"name": "MooreForge Weather Station", "name": "MooreForge Sensor Station",
"icons": [ "icons": [
{ {
"src": "favicon.png", "src": "favicon.png",

View File

@ -6,8 +6,8 @@ import Soil from './components/soil';
function App() { function App() {
return ( return (
<div className="App"> <div className="App">
<h1 className={'header'}>MooreForge Weather Station</h1> <h1 className={'header'}>MooreForge Sensor Station</h1>
<p>Welcome to the MooreForge Weather Station. While a work in progress, there are some functional sensors shown below.</p> <p>Welcome to the MooreForge Sensor Station. While a work in progress, there are some functional sensors shown below.</p>
<div className={'sensors'}> <div className={'sensors'}>
<div className={'rainfall-gauge sensor-col'}><Rainfall /></div> <div className={'rainfall-gauge sensor-col'}><Rainfall /></div>
<div className={'soil-gauge sensor-col'}><Soil /></div> <div className={'soil-gauge sensor-col'}><Soil /></div>