mirror of
https://github.com/uetchy/namae.git
synced 2025-03-16 20:20:38 +09:00
docs: new copy
This commit is contained in:
parent
a8fa8a04d1
commit
7ce3e0d99c
@ -1,10 +1,8 @@
|
||||
# namae.dev
|
||||
# namae
|
||||
|
||||
> name your new project.
|
||||
> name new project.
|
||||
|
||||
## Usage
|
||||
|
||||
Access to [namae.dev](https://namae.dev).
|
||||
namae saves your time searching around registries and checking if the desired name is ready for use.
|
||||
|
||||
## Contributing
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "namae",
|
||||
"description": "name your new project.",
|
||||
"description": "namae saves your time searching around registries and checking if the desired name is ready for use.",
|
||||
"author": "Yasuaki Uechi <y@uechi.io> (https://uechi.io/)",
|
||||
"scripts": {
|
||||
"start": "now dev"
|
||||
|
@ -7,10 +7,13 @@
|
||||
<meta name="theme-color" content="#ffffff" />
|
||||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||||
<meta name="title" content="namae" />
|
||||
<meta name="description" content="name your new project" />
|
||||
<meta
|
||||
name="description"
|
||||
content="namae saves your time searching around registries and checking if the desired name is ready for use."
|
||||
/>
|
||||
<meta name="keywords" content="name" />
|
||||
<meta name="robots" content="index, follow" />
|
||||
<title>namae</title>
|
||||
<title>namae — name new project</title>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
|
@ -145,6 +145,6 @@ const Input = styled.input.attrs({
|
||||
font-size: 5rem;
|
||||
|
||||
${mobile} {
|
||||
font-size: 1.5rem;
|
||||
font-size: 2rem;
|
||||
}
|
||||
`
|
||||
|
@ -8,9 +8,9 @@ export default function Footer() {
|
||||
return (
|
||||
<Container>
|
||||
<p>
|
||||
Made by U with{' '}
|
||||
Made by <Bold>Yasuaki Uechi</Bold> with{' '}
|
||||
<span role="img" aria-label="coffee">
|
||||
☕️
|
||||
🦀
|
||||
</span>
|
||||
</p>
|
||||
<Links>
|
||||
@ -30,7 +30,7 @@ const Container = styled.footer`
|
||||
text-align: center;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
|
||||
Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
||||
font-size: 0.8em;
|
||||
font-size: 0.7rem;
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
justify-content: center;
|
||||
@ -46,3 +46,7 @@ const Links = styled.div`
|
||||
color: black;
|
||||
}
|
||||
`
|
||||
|
||||
const Bold = styled.span`
|
||||
font-weight: bold;
|
||||
`
|
||||
|
@ -17,67 +17,82 @@ import { mobile } from '../util/css'
|
||||
export default function Welcome() {
|
||||
return (
|
||||
<Container>
|
||||
<Header>name your brand new project</Header>
|
||||
<p>
|
||||
namæ helps you by searching around package registries and domains to see
|
||||
if your desired name is already taken.
|
||||
</p>
|
||||
<ul>
|
||||
<List>
|
||||
<ListItem>
|
||||
<FaMapSigns /> Domains
|
||||
</ListItem>
|
||||
<ListItem>
|
||||
<FaGithub /> GitHub Organization
|
||||
</ListItem>
|
||||
<ListItem>
|
||||
<FaNpm /> npm
|
||||
</ListItem>
|
||||
<ListItem>
|
||||
<FaPython /> PyPI
|
||||
</ListItem>
|
||||
<ListItem>
|
||||
<IoIosBeer /> Homebrew
|
||||
</ListItem>
|
||||
<ListItem>
|
||||
<DiRust /> crates.io (Rust)
|
||||
</ListItem>
|
||||
<ListItem>
|
||||
<FaJsSquare /> js.org
|
||||
</ListItem>
|
||||
<ListItem>
|
||||
<FaAws /> AWS S3 Bucket
|
||||
</ListItem>
|
||||
<ListItem>
|
||||
<FaTwitter /> Twitter
|
||||
</ListItem>
|
||||
<ListItem>
|
||||
<FaSlack /> Slack
|
||||
</ListItem>
|
||||
</List>
|
||||
</ul>
|
||||
<Hero>
|
||||
<Header>name new project</Header>
|
||||
<Text>
|
||||
namæ saves your time searching around registries and checking if the
|
||||
desired name is ready for use.
|
||||
</Text>
|
||||
</Hero>
|
||||
<List>
|
||||
<ListItem>
|
||||
<FaMapSigns /> Domains
|
||||
</ListItem>
|
||||
<ListItem>
|
||||
<FaGithub /> GitHub Organization
|
||||
</ListItem>
|
||||
<ListItem>
|
||||
<FaNpm /> npm
|
||||
</ListItem>
|
||||
<ListItem>
|
||||
<FaPython /> PyPI
|
||||
</ListItem>
|
||||
<ListItem>
|
||||
<IoIosBeer /> Homebrew
|
||||
</ListItem>
|
||||
<ListItem>
|
||||
<DiRust /> crates.io (Rust)
|
||||
</ListItem>
|
||||
<ListItem>
|
||||
<FaJsSquare /> js.org
|
||||
</ListItem>
|
||||
<ListItem>
|
||||
<FaAws /> AWS S3 Bucket
|
||||
</ListItem>
|
||||
<ListItem>
|
||||
<FaTwitter /> Twitter
|
||||
</ListItem>
|
||||
<ListItem>
|
||||
<FaSlack /> Slack
|
||||
</ListItem>
|
||||
</List>
|
||||
</Container>
|
||||
)
|
||||
}
|
||||
|
||||
const Container = styled.div`
|
||||
padding-bottom: 40px;
|
||||
padding-right: 20vw;
|
||||
padding-left: 20vw;
|
||||
text-align: center;
|
||||
padding: 0 40px;
|
||||
font-size: 1.5rem;
|
||||
line-height: 1.6em;
|
||||
|
||||
${mobile} {
|
||||
text-align: left;
|
||||
padding-right: 40px;
|
||||
padding-left: 40px;
|
||||
}
|
||||
`
|
||||
|
||||
const Header = styled.h1`
|
||||
font-size: 2em;
|
||||
padding: 10px 0 40px;
|
||||
font-size: 5rem;
|
||||
line-height: 0.8em;
|
||||
padding-bottom: 30px;
|
||||
`
|
||||
|
||||
const Text = styled.p`
|
||||
font-size: 1.2em;
|
||||
color: #3c3c3c;
|
||||
}
|
||||
`
|
||||
|
||||
const Hero = styled.div`
|
||||
padding-top: 40px;
|
||||
`
|
||||
|
||||
const List = styled.div`
|
||||
margin-top: 40px;
|
||||
margin-top: 50px;
|
||||
padding: 20px;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
@ -97,7 +112,8 @@ const ListItem = styled.div`
|
||||
margin: 15px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
line-height: 1rem;
|
||||
font-size: 1.2rem;
|
||||
line-height: 1em;
|
||||
|
||||
${mobile} {
|
||||
margin: 10px 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user