Compare commits

..

No commits in common. "0517300d4d03ea0a7df8e82bd688c5f7a601429d" and "eb37bd2b0b0d988a42b83f7b6bae99089f8bc5cf" have entirely different histories.

4 changed files with 6 additions and 17 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "raceway", "name": "raceway",
"version": "0.0.12", "version": "0.0.11",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "raceway", "name": "raceway",
"version": "0.0.12", "version": "0.0.11",
"dependencies": { "dependencies": {
"@marzzelo/windir": "^1.2.3", "@marzzelo/windir": "^1.2.3",
"next": "^16.2.10", "next": "^16.2.10",

View file

@ -1,6 +1,6 @@
{ {
"name": "raceway", "name": "raceway",
"version": "0.0.12", "version": "0.0.11",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",

View file

@ -5,8 +5,6 @@ import Image from "next/image";
import { useEffect, useState } from "react"; import { useEffect, useState } from "react";
import styles from "./todo.module.css"; import styles from "./todo.module.css";
const version = require("../../../package.json").version;
export default function WeatherPage() { export default function WeatherPage() {
const [weather, setWeather] = useState(null); const [weather, setWeather] = useState(null);
const [time, setTime] = useState(new Date().toLocaleTimeString()); const [time, setTime] = useState(new Date().toLocaleTimeString());
@ -98,10 +96,7 @@ export default function WeatherPage() {
<div className={styles.todoHeader}> <div className={styles.todoHeader}>
<span className={styles.left}> <span className={styles.left}>
<span className={styles.title}>Raceway Car Wash</span> <span className={styles.title}>Raceway Car Wash</span>
<span className={styles.location}> <span className={styles.location}>Fox Lake</span>
Fox Lake{" "}
<span className={styles.version}>v{version}</span>
</span>
</span> </span>
<span className={styles.right}> <span className={styles.right}>
<span className={styles.time}>{time || "00:00:00 AM"}</span> <span className={styles.time}>{time || "00:00:00 AM"}</span>
@ -110,8 +105,8 @@ export default function WeatherPage() {
</div> </div>
<span className={styles.container}> <span className={styles.container}>
<span className={styles.listContainer}> <span className={styles.listContainer}>
<span className={styles.lists}>Daily ToDo Rotation</span> <span className={styles.lists}>Automated List</span>
<span className={styles.lists}>Manual ToDo List</span> <span className={styles.lists}>Manual List</span>
</span> </span>
<span className={styles.weatherContainer}> <span className={styles.weatherContainer}>

View file

@ -27,12 +27,6 @@
font-size: 20px; font-size: 20px;
letter-spacing: 2px; letter-spacing: 2px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
.version {
font-size: 10pt;
font-weight: light;
color: rgba(255, 255, 255, 0.6);
}
} }
.right { .right {