Skip to content

Commit

Permalink
fix: color of links in ankle (#72)
Browse files Browse the repository at this point in the history
Co-authored-by: Matthew Stankiewicz <[email protected]>
  • Loading branch information
2 people authored and ebrockainq committed Jul 30, 2024
1 parent 52f6e9d commit 9eefbac
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions src/components/shared/Ankle.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import palette from '@/styles/palette'
import { Box, Container, Typography } from '@mui/material'
import Link from 'next/link'

Expand All @@ -10,16 +11,19 @@ export default function Ankle() {
</Typography>
<Typography variant="body1" color="#fff">
Please checkout our{' '}
<Link color="secondary" href="/faqs" passHref>
<Link style={{ color: palette.white }} href="/faqs" passHref>
FAQs
</Link>{', '}
<Link color="secondary" href="/docs-and-vids" passHref>
</Link>
{', '}
<Link style={{ color: palette.white }} href="/docs-and-vids" passHref>
Documentation &amp; Videos
</Link>{', '}
</Link>
{', '}
or{' '}
<Link color="secondary" href="/archived" passHref>
<Link style={{ color: palette.white }} href="/archived" passHref>
Archived
</Link>{' section '}
</Link>
{' section '}
for more details.
</Typography>
</Container>
Expand Down

0 comments on commit 9eefbac

Please sign in to comment.