Skip to content

Commit

Permalink
Merge pull request #12 from defilytica/fix/cleanup
Browse files Browse the repository at this point in the history
Fix/cleanup
  • Loading branch information
Hyferion authored Aug 29, 2024
2 parents ef34773 + dcf5ecc commit c546fbd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/navigation/DesktopNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react'
import {
Flex,
useColorModeValue,
Box, Avatar, Heading,
Avatar,
} from '@chakra-ui/react'
import DarkModeToggle from "@/components/btns/DarkModeToggle";
import { SignInButton } from "@/components/SignInButton";
Expand Down
13 changes: 10 additions & 3 deletions components/navigation/SidebarContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
Heading,
BoxProps,
Link,
Image,
Image, Badge,
} from '@chakra-ui/react'
import {
FiHome,
Expand All @@ -17,8 +17,6 @@ import { RiContractLine } from "react-icons/ri";
import { TbTransactionBitcoin } from "react-icons/tb";
import NavItem from './NavItem'
import { BalancerLogo } from "@/public/imgs/BalancerLogo";
import { SignInButton } from "@/components/SignInButton";
import DarkModeToggle from "@/components/btns/DarkModeToggle";

interface SidebarProps extends BoxProps {
onClose: () => void
Expand Down Expand Up @@ -87,6 +85,15 @@ const SidebarContent = ({ onClose, ...rest }: SidebarProps) => {
flexDirection="column"
alignItems="center"
>
<Badge
colorScheme="purple"
mb={4}
fontSize="0.8em"
borderRadius="full"
px={2}
>
Alpha release
</Badge>
<DRPCBanner />
</Flex>
</Box>
Expand Down

0 comments on commit c546fbd

Please sign in to comment.