diff --git a/src/components/LayoutComponent/LandingPage.tsx b/src/components/LayoutComponent/LandingPage.tsx index 8968c9e1..6d0b436c 100644 --- a/src/components/LayoutComponent/LandingPage.tsx +++ b/src/components/LayoutComponent/LandingPage.tsx @@ -1,6 +1,7 @@ import LayoutComponent from './LayoutComponent' import './LandingPage.css' import QuickStartBar from '../QuickStartBar/QuickStartBar' +import NodesLogo from '../NodesLogo' function LandingPage() { return ( @@ -15,14 +16,7 @@ function Content() { return (
-
-
- -
-

- nodesBETA -

-
+
diff --git a/src/components/Logo.tsx b/src/components/Logo.tsx deleted file mode 100644 index acc484c3..00000000 --- a/src/components/Logo.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import { XStack } from 'tamagui' -import Icon from './Icon' -import Tag from './Tag' - -const Logo = () => { - return ( - - - - - - ) -} - -export default Logo diff --git a/src/components/NimbusLogo.tsx b/src/components/NimbusLogo.tsx new file mode 100644 index 00000000..7efa5558 --- /dev/null +++ b/src/components/NimbusLogo.tsx @@ -0,0 +1,21 @@ +import { Text, XStack } from 'tamagui' +import Icon from './Icon' +import Tag from './Tag' + +const NimbusLogo = () => { + return ( + + + Nimbus + + + ) +} + +export default NimbusLogo diff --git a/src/components/NodesLogo.tsx b/src/components/NodesLogo.tsx new file mode 100644 index 00000000..d5fd10e4 --- /dev/null +++ b/src/components/NodesLogo.tsx @@ -0,0 +1,21 @@ +import { Text, XStack } from 'tamagui' +import Icon from './Icon' +import Tag from './Tag' + +const NodesLogo = () => { + return ( + + + nodes + + + ) +} + +export default NodesLogo diff --git a/src/components/Tag.tsx b/src/components/Tag.tsx index 84383dfd..1d7b829c 100644 --- a/src/components/Tag.tsx +++ b/src/components/Tag.tsx @@ -1,25 +1,26 @@ -import { Paragraph } from 'tamagui' +import { Text, XStack } from 'tamagui' type TagProps = { - bc: string + bc?: string text: string } -const Tag = ({ bc, text }: TagProps) => { +const Tag = ({ bc = '#2A4AF5', text }: TagProps) => { return ( -
- + {text} - -
+ + ) }