Skip to content

Commit 06a1e28

Browse files
committed
🐣 release: commit first
0 parents  commit 06a1e28

File tree

8 files changed

+7405
-0
lines changed

8 files changed

+7405
-0
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules
2+
dist
3+
.DS_Store
4+
*.log
5+
*.swp
6+
*~
7+
.vscode

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# intlify.dev
2+
3+
website for inlitfy
4+
5+
## :copyright: License
6+
7+
[MIT](http://opensource.org/licenses/MIT)

docs/.vuepress/config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module.exports = {
2+
title: 'Intlify',
3+
description: 'The borderless internationalization'
4+
}

docs/.vuepress/styles/palette.styl

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
$textColor = #444
2+
3+
html {
4+
background-color: #FFCD19;
5+
color: #333;
6+
}
7+
8+
body {
9+
font-family: "Source Sans Pro", "Helvetica Neue", "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", sans-serif;
10+
background-color: #FFCD19;
11+
color: #333;
12+
}
13+
14+
.main-title, .description {
15+
font-family: "Source Sans Pro", "Helvetica Neue", "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Open Sans", sans-serif;
16+
}
17+
18+
.home .hero .description {
19+
color: #333;
20+
}

docs/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
home: true
3+
navbar: false
4+
---
5+
6+
<center>
7+
comming soon ...
8+
</center>

package.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "intlify.dev",
3+
"description": "The borderless internationalization",
4+
"version": "0.0.1",
5+
"author": {
6+
"name": "kazuya kawaguchi",
7+
"email": "kawakazu80@gmail.com"
8+
},
9+
"dependencies": {
10+
"vuepress": "^1.0.3"
11+
},
12+
"license": "MIT",
13+
"private": true,
14+
"scripts": {
15+
"build": "vuepress build docs",
16+
"dev": "vuepress dev docs"
17+
}
18+
}

yarn.lock

Lines changed: 7332 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)