Updated home link. Updated version info.

This commit is contained in:
Lucid Kobold
2021-12-13 21:22:54 -06:00
parent 57363a60da
commit 6ed098e463
4 changed files with 5 additions and 8 deletions

View File

@@ -42,10 +42,9 @@ interface Calendar {
// Will replace all states and be used in redis as a form of memoization. // Will replace all states and be used in redis as a form of memoization.
interface MonthInfo { interface MonthInfo {
date: Date; date: Date;
format: string;
layout: Calendar; layout: Calendar;
startDay: string; startWeekday: string;
endDay: string; endWeekday: string;
days: number; days: number;
} }
@@ -108,8 +107,6 @@ const CalenderContextProvider = ({
); );
// Add start of selected month and start of next month, including day of week and numerical day. // Add start of selected month and start of next month, including day of week and numerical day.
const [calendar, setCalendar] = useState<Calendar>({} as Calendar);
// TODO: Remove this state and all referenced to it once the date alignment algorithm is complete. // TODO: Remove this state and all referenced to it once the date alignment algorithm is complete.
const [daysOfMonth, setDaysOfMonth] = useState<[number]>([1]); const [daysOfMonth, setDaysOfMonth] = useState<[number]>([1]);

View File

@@ -2,7 +2,7 @@
"private": true, "private": true,
"name": "lucid-creations-media-potty-chart", "name": "lucid-creations-media-potty-chart",
"homepage": "https://lucidcreations.media/introducing-code-name-potty-chart/", "homepage": "https://lucidcreations.media/introducing-code-name-potty-chart/",
"version": "v0.0.5.0-pre-alpha", "version": "v0.0.5.1-pre-alpha",
"author": { "author": {
"name": "Lucid Creations Media", "name": "Lucid Creations Media",
"url": "https://lucidcreations.media", "url": "https://lucidcreations.media",

View File

@@ -13,7 +13,7 @@ import MobileNav from "./MobileNav";
const Header = (): JSX.Element => { const Header = (): JSX.Element => {
const appName = "LCM Potty Chart"; const appName = "LCM Potty Chart";
const appVersion = "v0.0.5.0-pre-alpha"; const appVersion = "v0.0.5.1-pre-alpha";
// Add transparency while not at the top of the page. // Add transparency while not at the top of the page.
const [transparentNavbar, setTransparentNavbar] = useState<boolean>(false); const [transparentNavbar, setTransparentNavbar] = useState<boolean>(false);

View File

@@ -1,6 +1,6 @@
export type NavItem = [string, string]; export type NavItem = [string, string];
export type NavItems = NavItem[]; export type NavItems = NavItem[];
const navItems: NavItems = [["Home", "#top"]]; const navItems: NavItems = [["Home", "/"]];
export default navItems; export default navItems;