diff --git a/remix/app/components/Icon/Icon.tsx b/remix/app/components/Icon/Icon.tsx index 7f5d583..7a04ddd 100644 --- a/remix/app/components/Icon/Icon.tsx +++ b/remix/app/components/Icon/Icon.tsx @@ -155,6 +155,13 @@ export const Icon = (props) => { if (["trash", "bin", "delete", "remove"]?.includes(name)) { return "🗑️" } + if (["cash", "money"]?.includes(name)) { + // return "💰" + return "💵" + } + if (["money bag"]?.includes(name)) { + return "💰" + } if (["thingtime"]?.includes(name)) { if (Math.random() > 0.5) { return "🌳" diff --git a/remix/app/components/Layout/Main.tsx b/remix/app/components/Layout/Main.tsx index e7deeac..a99bf25 100644 --- a/remix/app/components/Layout/Main.tsx +++ b/remix/app/components/Layout/Main.tsx @@ -1,20 +1,25 @@ -import { Flex } from '@chakra-ui/react' -import { Nav } from '../Nav/Nav' -import { ProfileDrawer } from '../Nav/ProfileDrawer' +import { Box, Flex } from "@chakra-ui/react" -export const Main = props => { +import { Footer } from "../Nav/Footer" +import { Nav } from "../Nav/Nav" +import { ProfileDrawer } from "../Nav/ProfileDrawer" + +export const Main = (props) => { return ( {/* */}