1
0
mirror of https://github.com/uetchy/namae.git synced 2025-08-20 09:58:13 +09:00

docs: update document

This commit is contained in:
2019-07-31 13:57:48 +09:00
parent 768738ab14
commit dc0bc8fec4
3 changed files with 49 additions and 17 deletions

View File

@@ -4,6 +4,8 @@ import styled from 'styled-components'
import { useDeferredState } from './hooks/state'
import { mobile } from './util/css'
import Footer from './components/Footer'
import GithubCard from './components/cards/GithubCard'
import DomainCard from './components/cards/DomainCard'
import HomebrewCard from './components/cards/HomebrewCard'
@@ -14,7 +16,6 @@ import JsOrgCard from './components/cards/JsOrgCard'
import PypiCard from './components/cards/PypiCard'
import S3Card from './components/cards/S3Card'
import CratesioCard from './components/cards/CratesioCard'
import Footer from './components/Footer'
export default function App() {
const [query, setQuery] = useDeferredState(1000)

View File

@@ -1,14 +1,14 @@
import React from 'react'
import styled from 'styled-components'
import { FaTwitter, FaGlobe } from 'react-icons/fa'
import { FaTwitter, FaGithubAlt } from 'react-icons/fa'
export default function Footer() {
return (
<Container>
<p>
Made by U with{' '}
<span role="img" aria-label="love">
🐤
<span role="img" aria-label="coffee">
</span>
<br />
<br />
@@ -18,8 +18,11 @@ export default function Footer() {
rel="noopener noreferrer">
<FaTwitter />
</a>{' '}
<a href="https://uechi.io" target="_blank" rel="noopener noreferrer">
<FaGlobe />
<a
href="https://github.com/uetchy/namae"
target="_blank"
rel="noopener noreferrer">
<FaGithubAlt />
</a>
</p>
</Container>