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',
+ },
+});