From c62e0c8bd3d24012b7c1b2925299adeeab4e5c57 Mon Sep 17 00:00:00 2001 From: Nikolaj Frey Date: Mon, 14 Aug 2023 11:34:50 +1000 Subject: [PATCH] feat: feature/mvp-sprint-1 Added investment links --- remix/app/components/Icon/Icon.tsx | 7 ++++ remix/app/components/Layout/Main.tsx | 27 +++++++++------- remix/app/components/Nav/Footer.tsx | 43 +++++++++++++++++++++++++ remix/app/components/Splash/Splash.tsx | 21 +++++++----- remix/app/components/textAnimation1.tsx | 32 +++++++++--------- 5 files changed, 95 insertions(+), 35 deletions(-) create mode 100644 remix/app/components/Nav/Footer.tsx 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 ( {/* */}