From d77761ca6ecbad8f3295b255c3702ec5df7832b7 Mon Sep 17 00:00:00 2001 From: Corwin Smith Date: Fri, 21 Oct 2022 12:41:07 -0500 Subject: [PATCH] convert from grid to flex --- src/components/layouts/Footer.tsx | 146 ++++++++++++++++-------------- 1 file changed, 76 insertions(+), 70 deletions(-) diff --git a/src/components/layouts/Footer.tsx b/src/components/layouts/Footer.tsx index 40f1ecd9b7..ce7db0f1f7 100644 --- a/src/components/layouts/Footer.tsx +++ b/src/components/layouts/Footer.tsx @@ -1,4 +1,4 @@ -import { Grid, GridItem, Image, Link, Stack, Text } from '@chakra-ui/react'; +import { Box, Flex, Link, Stack, Text } from '@chakra-ui/react'; import { FC } from 'react'; import NextLink from 'next/link'; @@ -18,55 +18,61 @@ import { export const Footer: FC = () => { return ( - - - - - - DOWNLOADS - - - + + + + + + + DOWNLOADS + + + - + + + DOCUMENTATION + + + + + + + - - - DOCUMENTATION - - - - - - - - + alignItems='center' + > { - - - + { - - - + { - - + + © 2013–2022. The go-ethereum Authors. - + ) } \ No newline at end of file