1
0
mirror of https://github.com/uetchy/namae.git synced 2025-07-02 06:20:02 +09:00

chore: fix typo

This commit is contained in:
uetchy 2019-09-01 13:23:28 +09:00
parent ff33c0b2d7
commit 0d3a1de15e
2 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ export default function Footer() {
const { t } = useTranslation() const { t } = useTranslation()
return ( return (
<Contaienr> <Container>
<Box> <Box>
<p> <p>
Made with{' '} Made with{' '}
@ -49,11 +49,11 @@ export default function Footer() {
</span> </span>
</a> </a>
</Box> </Box>
</Contaienr> </Container>
) )
} }
const Contaienr = styled.div` const Container = styled.div`
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;

View File

@ -18,8 +18,8 @@ import {
} from 'react-icons/fa' } from 'react-icons/fa'
import { IoIosBeer } from 'react-icons/io' import { IoIosBeer } from 'react-icons/io'
import { DiRust, DiHeroku } from 'react-icons/di' import { DiRust, DiHeroku } from 'react-icons/di'
import { SpectrumIcon, NowIcon } from './Icons'
import { SpectrumIcon, NowIcon } from './Icons'
import { mobile } from '../util/css' import { mobile } from '../util/css'
export default function Welcome() { export default function Welcome() {