Skip to content

Commit

Permalink
feat: prettier 💅
Browse files Browse the repository at this point in the history
  • Loading branch information
jpvalery committed Jan 12, 2021
1 parent 2c4cd3b commit 2eb0032
Show file tree
Hide file tree
Showing 31 changed files with 1,568 additions and 732 deletions.
68 changes: 68 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.local

.cache/
yarn-error.log
.tern-port
.DS_Store

.next

.vercel
1 change: 1 addition & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ yarn dev

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


## Credits

Inspired by [leerob.io](https://github.com/leerob/leerob.io)
33 changes: 22 additions & 11 deletions components/Footer.js
Original file line number Diff line number Diff line change
@@ -1,33 +1,44 @@
import GitHub from '../icons/Github';
import LinkedIn from '../icons/Linkedin';
import Twitter from '../icons/Twitter';
import Unsplash from '../icons/Unsplash';
import GitHub from "../icons/Github";
import LinkedIn from "../icons/Linkedin";
import Twitter from "../icons/Twitter";
import Unsplash from "../icons/Unsplash";

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

<a href="https://unsplash.com/@jpvalery" className="text-gray-400 hover:text-gray-500 h-6 w-6">
<a
href="https://unsplash.com/@jpvalery"
className="text-gray-400 hover:text-gray-500 h-6 w-6"
>
<span className="sr-only">Unsplash</span>
<Unsplash />
</a>

<a href="https://github.com/jpvalery" className="text-gray-400 hover:text-gray-500 h-6 w-6">
<a
href="https://github.com/jpvalery"
className="text-gray-400 hover:text-gray-500 h-6 w-6"
>
<span className="sr-only">GitHub</span>
<GitHub />
</a>

<a href="https://twitter.com/jpvalery" className="text-gray-400 hover:text-gray-500 h-6 w-6">
<a
href="https://twitter.com/jpvalery"
className="text-gray-400 hover:text-gray-500 h-6 w-6"
>
<span className="sr-only">Twitter</span>
<Twitter />
</a>

</div>
<div className="mt-8 md:mt-0 md:order-1">
<p className="text-center text-base text-gray-500">
Expand All @@ -36,5 +47,5 @@ export default function Footer () {
</div>
</div>
</footer>
)
);
}
923 changes: 627 additions & 296 deletions components/Header.js

Large diffs are not rendered by default.

Loading

1 comment on commit 2eb0032

@vercel
Copy link

@vercel vercel bot commented on 2eb0032 Jan 12, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.