diff --git a/src/components/MultiplierShop.tsx b/src/components/MultiplierShop.tsx index 3ff6c0e..13b5d54 100644 --- a/src/components/MultiplierShop.tsx +++ b/src/components/MultiplierShop.tsx @@ -1,4 +1,4 @@ -import { Box, Button, VStack, HStack, Text } from '@chakra-ui/react' +import { Box, Button, VStack, HStack, Text, SimpleGrid } from '@chakra-ui/react' import { useGameStore } from '../store/gameStore' const MULTIPLIER_PURCHASES = [ @@ -16,25 +16,34 @@ export function MultiplierShop() { return ( - Multiplier Shop - - - - + + Click Power Multiplier + + Temporarily increase the points you get from clicking. Does not affect automatic point generation from buildings. + + + + {MULTIPLIER_PURCHASES.map((purchase) => ( + + ))} + )