diff --git a/src/components/Dashboard/Tiles/Apps/AppTile.tsx b/src/components/Dashboard/Tiles/Apps/AppTile.tsx index ca945f81c..f25e1c125 100644 --- a/src/components/Dashboard/Tiles/Apps/AppTile.tsx +++ b/src/components/Dashboard/Tiles/Apps/AppTile.tsx @@ -1,4 +1,4 @@ -import { Center, Text, UnstyledButton } from '@mantine/core'; +import { Box, Stack, Title, UnstyledButton } from '@mantine/core'; import { NextLink } from '@mantine/next'; import { createStyles } from '@mantine/styles'; import { motion } from 'framer-motion'; @@ -26,23 +26,34 @@ export const AppTile = ({ className, app }: AppTileProps) => { function Inner() { return ( <> - - {app.name} - -
+ + -
+ ); }