Skip to content

Commit

Permalink
Merge pull request #12256 from ethereum/fixBugBountyH1
Browse files Browse the repository at this point in the history
Add H1 to bug bounty page
  • Loading branch information
corwintines authored Feb 21, 2024
2 parents d9fb2bf + 5748953 commit ce03fe3
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/pages/bug-bounty.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { serverSideTranslations } from "next-i18next/serverSideTranslations"
import {
Box,
Center,
Heading,
ListItem,
UnorderedList,
useColorModeValue,
Expand Down Expand Up @@ -103,18 +104,21 @@ const Subtitle = (props: ChildOnlyProp) => (

const SloganGradient = (props: ChildOnlyProp) => (
<Box
fontWeight="extrabold"
fontSize={{ base: "2.5rem", lg: "5xl" }}
lineHeight="xs"
maxW="720px"
mt="4"
mb="0"
bgClip="text"
overflow="auto"
sx={{ WebkitBackgroundClip: "text", WebkitTextFillColor: "transparent" }}
bg="upgradesGradient"
>
<Text>{props.children}</Text>
<Heading
as="h1"
fontSize={{ base: "2.5rem", lg: "5xl" }}
fontWeight="800"
mb="1.45rem"
>
{props.children}
</Heading>
</Box>
)

Expand Down

0 comments on commit ce03fe3

Please sign in to comment.