Skip to content

Commit

Permalink
final qa
Browse files Browse the repository at this point in the history
  • Loading branch information
jmzwar committed Jul 5, 2023
1 parent 41dc547 commit d141ad1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 18 deletions.
2 changes: 1 addition & 1 deletion pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const newTheme = extendTheme({
fontWeight: 700,
},
'heading-xl': {
fontSize: { base: '24px', lg: '36px' },
fontSize: { base: '30px', lg: '36px' },
fontFamily: 'heading',
lineHeight: { base: '36px', lg: '120%' },
fontWeight: 700,
Expand Down
2 changes: 1 addition & 1 deletion src/sections/home/ecosystem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const Ecosystem = () => {
>
Explore the growing ecosystem of decentralized apps built on top
of Synthetix liquidity. The Synthetix ecosystem is comprised of
derivatives exchanges, sUSD utility, and more
derivatives exchanges, sUSD utility, and more.
</Text>
</Box>
</Box>
Expand Down
13 changes: 3 additions & 10 deletions src/sections/home/governance.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
import Link from 'next/link';
import {
Button,
Flex,
Heading,
Link as ChakraLink,
Text,
Show,
} from '@chakra-ui/react';
import { Button, Flex, Text, Show } from '@chakra-ui/react';
import { Spartan } from 'src/svg/Spartan';
import { links } from 'src/utils/constants';

Expand All @@ -28,14 +21,14 @@ export const Governance = () => {
>
SYNTHETIX GOVERNANCE
</Text>
<Heading
<Text
fontFamily="heading"
color="gray.50"
mb="16px"
textStyle="heading-2xl"
>
Protocol Governance
</Heading>
</Text>
<Text
fontSize="16px"
fontFamily="heading"
Expand Down
13 changes: 7 additions & 6 deletions src/sections/home/volume.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ export const Volume = ({ totalStakedValue, tradingVolume }: VolumeProps) => {
<Heading
fontFamily="heading"
fontWeight={700}
lineHeight={{ base: '56px', md: '90px' }}
fontSize={{ base: '56px', md: '90px' }}
lineHeight={{ base: '50px', md: '90px' }}
fontSize={{ base: '50px', md: '90px' }}
color="gray.50"
>
{cumulativeTradingVolume}
Expand All @@ -48,14 +48,15 @@ export const Volume = ({ totalStakedValue, tradingVolume }: VolumeProps) => {
>
TOTAL VALUE LOCKED
</Text>
<Text
<Heading
fontFamily="heading"
as="h2"
textStyle="heading-3xl"
fontWeight={700}
lineHeight={{ base: '50px', md: '90px' }}
fontSize={{ base: '50px', md: '90px' }}
color="gray.50"
>
{tvl}
</Text>
</Heading>
</Flex>
</Flex>
<Box mt="24px">
Expand Down

0 comments on commit d141ad1

Please sign in to comment.