This commit is contained in:
Lucid Kobold
2021-11-13 17:11:29 -06:00
commit 4ec4be5a12
23 changed files with 8788 additions and 0 deletions

28
pages/_app.tsx Normal file
View File

@@ -0,0 +1,28 @@
import type { AppProps } from "next/app";
import React from "react";
import { ChakraProvider } from "@chakra-ui/react";
import AppTheme from "../theme/AppTheme";
import Layout from "../theme/layout/Layout";
import Head from "next/head";
function LCMPottyChart({
Component,
pageProps,
}: AppProps): JSX.Element {
return (
<ChakraProvider theme={AppTheme}>
<Layout {...pageProps}>
<Head>
<title>{"LCM Potty Chart"}</title>
<meta
name="viewport"
content="width=device-width, user-scalable=yes, initial-scale=1.0"
/>
</Head>
<Component {...pageProps} />
</Layout>
</ChakraProvider>
);
}
export default LCMPottyChart;

57
pages/_document.tsx Normal file
View File

@@ -0,0 +1,57 @@
import React from "react";
import NextDocument, { Html, Head, Main, NextScript } from "next/document";
import { ColorModeScript } from "@chakra-ui/react";
import AppTheme from "../theme/AppTheme";
const description =
"Behavior and progress tracker for ABDLs and babyfurs alike. Track multiple littles and create any trackers you would like.";
class Document extends NextDocument {
render(): JSX.Element {
return (
<Html>
<Head>
<meta name="theme-color" content="#3138dc" />
<link rel="icon" href="/images/favicon.svg" sizes="32x32 192x192" />
<link rel="apple-touch-icon" href="/images/favicon.svg" />
<meta property="og:title" content="LCM Potty Chart" />
<meta name="og:description" content={description} />
<meta property="og:type" content="Progress Tracking" />
<meta property="og:image" content="/images/logo.jpg" />
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:image:alt" content="LCM Potty Chart Logo" />
<meta property="og:url" content="https://lucidcreations.media" />
<meta name="twitter:card" content="summary_large_image" />
<meta property="title" content="LCM Potty Chart" />
<meta name="description" content={description} />
<meta property="type" content="Progress Tracking" />
<meta property="image" content="/images/logojpg" />
<meta property="image:type" content="image/jpeg" />
<meta property="image:alt" content="LCM Potty Chart Logo" />
<meta property="url" content="https://https://lucidcreations.media" />
<meta httpEquiv="content-language" content="en_US" />
<meta charSet="UTF-8" />
<meta
name="keywords"
content="ABDL Adult Baby Diaper Lover Furry Babyfur ab/dl AB/DL potty chart training progress behavior tracker habbit"
/>
<meta name="copyright" content="Lucid Creations Media" />
<meta name="page-topic" content="Progress Tracking" />
<meta name="page-type" content="Calender" />
<meta name="audience" content="18+" />
<meta name="robots" content="index, follow" />
<html lang="en" />
</Head>
<body>
<ColorModeScript
initialColorMode={AppTheme.config.initialColorMode}
/>
<Main />
<NextScript />
</body>
</Html>
);
}
}
export default Document;

14
pages/index.tsx Normal file
View File

@@ -0,0 +1,14 @@
import React from "react";
import { Box, Heading } from "@chakra-ui/react";
const IndexPage = (): JSX.Element => {
return (
<Box textAlign="center" w="100%" h="auto" py="10vh">
<Heading as="h1" size="2xl">
Hello World
</Heading>
</Box>
);
};
export default IndexPage;