Polish #14
@@ -33,11 +33,8 @@ const CalenderContextProvider = ({
|
|||||||
}: {
|
}: {
|
||||||
children: ReactNode;
|
children: ReactNode;
|
||||||
}): JSX.Element => {
|
}): JSX.Element => {
|
||||||
// Today's date
|
|
||||||
const [today] = useState<Date>(new Date());
|
|
||||||
|
|
||||||
// Selected month & year
|
// Selected month & year
|
||||||
const [selectedMonth, setSelectedMonth] = useState<Date>(today);
|
const [selectedMonth, setSelectedMonth] = useState<Date>(new Date());
|
||||||
const [endOfSelectedMonth, SetEndOfSelectedDMonth] = useState<number>(
|
const [endOfSelectedMonth, SetEndOfSelectedDMonth] = useState<number>(
|
||||||
getDate(endOfMonth(selectedMonth))
|
getDate(endOfMonth(selectedMonth))
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"private": true,
|
"private": true,
|
||||||
"name": "lucid-creations-media-potty-chart",
|
"name": "lucid-creations-media-potty-chart",
|
||||||
"homepage": "https://github.com/LucidCreationsMedia/",
|
"homepage": "https://lucidcreations.media/introducing-code-name-potty-chart/",
|
||||||
"version": "0.1.0",
|
"version": "0.0.3.1-pre-alpha",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Lucid Creations Media",
|
"name": "Lucid Creations Media",
|
||||||
"url": "https://lucidcreations.media",
|
"url": "https://lucidcreations.media",
|
||||||
|
|||||||
@@ -4,7 +4,8 @@ import { ColorModeScript } from "@chakra-ui/react";
|
|||||||
import AppTheme from "../theme/AppTheme";
|
import AppTheme from "../theme/AppTheme";
|
||||||
|
|
||||||
const description =
|
const description =
|
||||||
"Behavior and progress tracker for ABDLs and babyfurs alike. Track multiple littles and create any trackers you would like.";
|
// "Behavior and progress tracker for ABDLs and babyfurs alike. Track multiple littles and create any trackers you would like.";
|
||||||
|
"Pre-alpha preview of the behavior and progress tracker for ABDLs and babyfurs.";
|
||||||
|
|
||||||
class Document extends NextDocument {
|
class Document extends NextDocument {
|
||||||
render(): JSX.Element {
|
render(): JSX.Element {
|
||||||
|
|||||||
@@ -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.3.0-pre-alpha";
|
const appVersion = "v0.0.3.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);
|
||||||
|
|||||||
Reference in New Issue
Block a user