2023-08-14 01:34:50 +00:00
|
|
|
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/CommanderV1"
|
|
|
|
import { Icon } from "../Icon/Icon"
|
|
|
|
import { RainbowSkeleton } from "../Skeleton/RainbowSkeleton"
|
|
|
|
import { ProfileDrawer } from "./ProfileDrawer"
|
|
|
|
|
|
|
|
export const Footer = (props) => {
|
2023-08-14 01:36:05 +00:00
|
|
|
const investmentEmail = "invest@thingtime.com"
|
2023-08-15 11:17:09 +00:00
|
|
|
const contactEmail = "connect@thingtime.com"
|
2023-08-14 01:34:50 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
<Center
|
|
|
|
width="100%"
|
|
|
|
paddingTop="900px"
|
|
|
|
paddingBottom={[5, 12]}
|
|
|
|
paddingX={4}
|
|
|
|
>
|
|
|
|
<Flex width={["500px", "500px"]} maxWidth="100%">
|
2023-08-15 11:17:09 +00:00
|
|
|
{false && (
|
|
|
|
<Flex flexDirection="column" rowGap={3}>
|
|
|
|
<Flex flexDirection="column">
|
|
|
|
<Flex flexDirection="row" fontSize="xs">
|
|
|
|
<Icon name="cash" size="12px" chakras={{ pr: 1 }}></Icon>
|
|
|
|
To invest, please contact:
|
|
|
|
{/* <Icon name="money bag" size="10px" chakras={{ pl: 1 }}></Icon> */}
|
|
|
|
</Flex>
|
|
|
|
<Link to={`mailto:${investmentEmail}`}>
|
|
|
|
<Flex flexDirection="row">
|
|
|
|
<Text color="green">{investmentEmail}</Text>
|
|
|
|
</Flex>
|
|
|
|
</Link>
|
|
|
|
</Flex>
|
|
|
|
<Flex flexDirection="column" fontSize="xs">
|
|
|
|
{/* copyright message */}© 2023 Thingtime
|
|
|
|
</Flex>
|
|
|
|
</Flex>
|
|
|
|
)}
|
2023-08-14 01:34:50 +00:00
|
|
|
<Flex flexDirection="column" rowGap={3}>
|
|
|
|
<Flex flexDirection="column">
|
|
|
|
<Flex flexDirection="row" fontSize="xs">
|
2023-08-15 11:17:09 +00:00
|
|
|
<Icon name="mail" size="12px" chakras={{ pr: 1 }}></Icon>
|
|
|
|
Contact
|
2023-08-14 01:34:50 +00:00
|
|
|
{/* <Icon name="money bag" size="10px" chakras={{ pl: 1 }}></Icon> */}
|
|
|
|
</Flex>
|
2023-08-15 11:17:09 +00:00
|
|
|
<Link to={`mailto:${contactEmail}`}>
|
2023-08-14 01:34:50 +00:00
|
|
|
<Flex flexDirection="row">
|
2023-08-15 11:17:09 +00:00
|
|
|
<Text>{contactEmail}</Text>
|
2023-08-14 01:34:50 +00:00
|
|
|
</Flex>
|
|
|
|
</Link>
|
|
|
|
</Flex>
|
2023-08-15 11:17:09 +00:00
|
|
|
<Flex alignItems="center" flexDirection="row" fontSize="xs">
|
|
|
|
<Text>{/* copyright message */}© 2023 Thingtime</Text>
|
|
|
|
<Flex
|
|
|
|
flexDirection="row"
|
|
|
|
marginTop={-0.5}
|
|
|
|
marginRight="auto"
|
|
|
|
paddingLeft="5px"
|
|
|
|
>
|
|
|
|
<Icon name="rainbow" size="8px"></Icon>
|
|
|
|
<Icon name="unicorn" size="8px"></Icon>
|
|
|
|
<Icon name="wizard" size="8px"></Icon>
|
|
|
|
</Flex>
|
2023-08-14 01:34:50 +00:00
|
|
|
</Flex>
|
|
|
|
</Flex>
|
|
|
|
</Flex>
|
|
|
|
</Center>
|
|
|
|
)
|
|
|
|
}
|