Skip to content

Commit 2eb0032

Browse files
committed
feat: prettier 💅
1 parent 2c4cd3b commit 2eb0032

31 files changed

Lines changed: 1568 additions & 732 deletions

.prettierignore

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
# Runtime data
9+
pids
10+
*.pid
11+
*.seed
12+
*.pid.lock
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# nyc test coverage
21+
.nyc_output
22+
23+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24+
.grunt
25+
26+
# Bower dependency directory (https://bower.io/)
27+
bower_components
28+
29+
# node-waf configuration
30+
.lock-wscript
31+
32+
# Compiled binary addons (http://nodejs.org/api/addons.html)
33+
build/Release
34+
35+
# Dependency directories
36+
node_modules/
37+
jspm_packages/
38+
39+
# Typescript v1 declaration files
40+
typings/
41+
42+
# Optional npm cache directory
43+
.npm
44+
45+
# Optional eslint cache
46+
.eslintcache
47+
48+
# Optional REPL history
49+
.node_repl_history
50+
51+
# Output of 'npm pack'
52+
*.tgz
53+
54+
# Yarn Integrity file
55+
.yarn-integrity
56+
57+
# dotenv environment variables file
58+
.env
59+
.env.local
60+
61+
.cache/
62+
yarn-error.log
63+
.tern-port
64+
.DS_Store
65+
66+
.next
67+
68+
.vercel

.prettierrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ yarn dev
1212

1313
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
1414

15-
1615
## Credits
1716

1817
Inspired by [leerob.io](https://github.com/leerob/leerob.io)

components/Footer.js

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,44 @@
1-
import GitHub from '../icons/Github';
2-
import LinkedIn from '../icons/Linkedin';
3-
import Twitter from '../icons/Twitter';
4-
import Unsplash from '../icons/Unsplash';
1+
import GitHub from "../icons/Github";
2+
import LinkedIn from "../icons/Linkedin";
3+
import Twitter from "../icons/Twitter";
4+
import Unsplash from "../icons/Unsplash";
55

6-
export default function Footer () {
6+
export default function Footer() {
77
return (
88
<footer className="bg-white">
99
<div className="max-w-3xl mx-auto py-12 md:flex md:items-center md:justify-between">
1010
<div className="flex justify-center space-x-6 md:order-2">
11-
<a href="https://linkedin.com/in/jpvalery" className="text-gray-400 hover:text-gray-500 h-6 w-6">
11+
<a
12+
href="https://linkedin.com/in/jpvalery"
13+
className="text-gray-400 hover:text-gray-500 h-6 w-6"
14+
>
1215
<span className="sr-only">LinkedIn</span>
1316
<LinkedIn />
1417
</a>
1518

16-
<a href="https://unsplash.com/@jpvalery" className="text-gray-400 hover:text-gray-500 h-6 w-6">
19+
<a
20+
href="https://unsplash.com/@jpvalery"
21+
className="text-gray-400 hover:text-gray-500 h-6 w-6"
22+
>
1723
<span className="sr-only">Unsplash</span>
1824
<Unsplash />
1925
</a>
2026

21-
<a href="https://github.com/jpvalery" className="text-gray-400 hover:text-gray-500 h-6 w-6">
27+
<a
28+
href="https://github.com/jpvalery"
29+
className="text-gray-400 hover:text-gray-500 h-6 w-6"
30+
>
2231
<span className="sr-only">GitHub</span>
2332
<GitHub />
2433
</a>
2534

26-
<a href="https://twitter.com/jpvalery" className="text-gray-400 hover:text-gray-500 h-6 w-6">
35+
<a
36+
href="https://twitter.com/jpvalery"
37+
className="text-gray-400 hover:text-gray-500 h-6 w-6"
38+
>
2739
<span className="sr-only">Twitter</span>
2840
<Twitter />
2941
</a>
30-
3142
</div>
3243
<div className="mt-8 md:mt-0 md:order-1">
3344
<p className="text-center text-base text-gray-500">
@@ -36,5 +47,5 @@ export default function Footer () {
3647
</div>
3748
</div>
3849
</footer>
39-
)
50+
);
4051
}

components/Header.js

Lines changed: 627 additions & 296 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)