From 23f7577e3aa9f96b55a97f838be1a382e2aa8944 Mon Sep 17 00:00:00 2001 From: alt0 Date: Fri, 30 Sep 2022 17:58:05 +0800 Subject: [PATCH] fix: add block suite link --- apps/venus/src/app/common/Footer.tsx | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/apps/venus/src/app/common/Footer.tsx b/apps/venus/src/app/common/Footer.tsx index d13ae5bb25..d8cc674223 100644 --- a/apps/venus/src/app/common/Footer.tsx +++ b/apps/venus/src/app/common/Footer.tsx @@ -2,7 +2,7 @@ /* eslint-disable @typescript-eslint/naming-convention */ import { useTranslation } from 'react-i18next'; -import { Box, Button, Grid, Typography } from '@mui/joy'; +import { Box, Button, Grid, styled, Typography } from '@mui/joy'; import GitHubIcon from '@mui/icons-material/GitHub'; import RedditIcon from '@mui/icons-material/Reddit'; @@ -361,7 +361,14 @@ export const AFFiNEFooter = ({ > #OpenSource - company + software, built with  + + BlockSuite + @@ -383,3 +390,13 @@ export const AFFiNEFooter = ({ ); }; + +const StyledLink = styled('a')({ + fontWeight: '900', + color: '#000', + textDecoration: 'none', + + '&:hover': { + textDecoration: 'underline', + }, +});