Skip to content

Commit 2557d2f

Browse files
committed
Fix centering on mobile by reducing word count.
1 parent 350b259 commit 2557d2f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

components/footer/Footer.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ export default function Footer() {
6565
</Container>
6666

6767
<Container maxW={'6xl'} py={4} centerContent>
68-
<p>
69-
All website content licensed under{' '}
68+
<Text align="center">
69+
Website content licensed under{' '}
7070
<NextLink
7171
href={'http://creativecommons.org/licenses/by-nc/4.0/'}
7272
passHref
@@ -76,8 +76,8 @@ export default function Footer() {
7676
</Link>
7777
</NextLink>
7878
.
79-
</p>
80-
<p>
79+
</Text>
80+
<Text>
8181
Website code is licensed under{' '}
8282
<NextLink
8383
href={'https://github.com/Developer-DAO/academy/blob/main/LICENSE'}
@@ -88,7 +88,7 @@ export default function Footer() {
8888
</Link>
8989
</NextLink>
9090
.
91-
</p>
91+
</Text>
9292
</Container>
9393
</Box>
9494
)

0 commit comments

Comments
 (0)