import React from "react" import { Box, Center, Flex, Text } from "@chakra-ui/react" import { Link, useLocation, useNavigate } from "@remix-run/react" import { Commander } from "../Commander/Commander" import { CommanderV1 } from "../Commander/CommanderV2" import { Icon } from "../Icon/Icon" import { RainbowSkeleton } from "../Skeleton/RainbowSkeleton" import { ProfileDrawer } from "./ProfileDrawer" export const Footer = (props) => { const investmentEmail = "invest@thingtime.com" const contactEmail = "connect@thingtime.com" return (
{false && ( To invest, please contact: {/* */} {investmentEmail} {/* copyright message */}© 2023 Thingtime )} Contact {/* */} {contactEmail} {/* copyright message */}© 2023 Thingtime
) }