import { Box, Grid, GridItem, Stack } from '@chakra-ui/react'; import { FC } from 'react'; import { GlyphHome } from '../svgs/GlyphHome'; import { ETHEREUM_ORG_URL } from '../../../constants'; import { ButtonLinkSecondary } from '..'; interface Props { children: React.ReactNode; } export const WhatIsEthereum: FC = ({ children }) => { return ( What is Ethereum {children} Learn more on Ethereum.org ); };