diff --git a/components/Footer.tsx b/components/Footer.tsx index 1db5494..6eb385a 100644 --- a/components/Footer.tsx +++ b/components/Footer.tsx @@ -20,12 +20,16 @@ const Footer: FC = (props) => ( {...props} > - © 2021 thedaviddelta & contributors + © 2021–{new Date().getFullYear()} thedaviddelta & contributors · Licensed under AGPLv3 + · + + AI enhancements by Cloud Host + {vercelSponsor && ( <> · diff --git a/components/Header.tsx b/components/Header.tsx index 9b99134..d6cbcf7 100644 --- a/components/Header.tsx +++ b/components/Header.tsx @@ -1,7 +1,7 @@ import { FC } from "react"; import Head from "next/head"; import NextLink from "next/link"; -import { Flex, HStack, IconButton, Link, useColorModeValue } from "@chakra-ui/react"; +import { Flex, HStack, IconButton, Link, Text, VStack, useColorModeValue } from "@chakra-ui/react"; import { FaGithub } from "react-icons/fa"; import { FiSettings } from "react-icons/fi"; import Image from "next/image"; @@ -28,13 +28,18 @@ const Header: FC = (props) => ( {...props} > - - Logo + + + Logo + + + AI enhancements + + diff --git a/pages/admin/index.tsx b/pages/admin/index.tsx index 1eecc2a..7776774 100644 --- a/pages/admin/index.tsx +++ b/pages/admin/index.tsx @@ -46,6 +46,7 @@ const AdminPage: NextPage = () => { const [testResult, setTestResult] = useState(null); const [testLoading, setTestLoading] = useState(false); + const pageBg = useColorModeValue("gray.50", "gray.900"); const cardBg = useColorModeValue("white", "gray.800"); const borderCol = useColorModeValue("gray.200", "gray.600"); const codeBg = useColorModeValue("gray.100", "gray.700"); @@ -140,7 +141,7 @@ const AdminPage: NextPage = () => { if (authed === null) { return ( - + ); @@ -150,6 +151,7 @@ const AdminPage: NextPage = () => { return ( <> + { + ); } @@ -188,7 +191,8 @@ const AdminPage: NextPage = () => { return ( <> - + + @@ -384,6 +388,7 @@ const AdminPage: NextPage = () => { + ); };