Skip to content

Commit

Permalink
feat: initial commit for 3.0 w/ Next
Browse files Browse the repository at this point in the history
  • Loading branch information
jpvalery committed Mar 1, 2021
1 parent 9fd4b47 commit 429d1a6
Show file tree
Hide file tree
Showing 86 changed files with 3,411 additions and 17,423 deletions.
9 changes: 0 additions & 9 deletions .codacy.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .codeclimate.yml

This file was deleted.

4 changes: 0 additions & 4 deletions .eslintignore

This file was deleted.

6 changes: 0 additions & 6 deletions .eslintrc.json

This file was deleted.

40 changes: 33 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,34 @@
node_modules
.cache/
public/
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.log
contentful-import-error-log*
.env*
.contentful.json
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

# vercel
.vercel
1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

11 changes: 0 additions & 11 deletions .stylelintrc

This file was deleted.

4 changes: 2 additions & 2 deletions LICENSE
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)
MIT License

Copyright (c) 2019 Jp Valery (based on the work of Matthias Jordan)
Copyright (c) 2021 @jpvalery

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
93 changes: 0 additions & 93 deletions bin/setup.js

This file was deleted.

33 changes: 33 additions & 0 deletions components/Footer.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import Instagram from "../elements/icons/Instagram";
import Unsplash from "../elements/icons/Unsplash";

export default function Footer() {
return (
<footer>
<div className="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://unsplash.com/@jpvalery"
className="text-gray-400 hover:text-accent h-6 w-6"
>
<span className="sr-only">Unsplash</span>
<Unsplash />
</a>

<a
href="https://instagram.com/jpvalery"
className="text-gray-400 hover:text-accent h-6 w-6"
>
<span className="sr-only">Instagram</span>
<Instagram />
</a>
</div>
<div className="mt-8 md:mt-0 md:order-1">
<p className="text-center text-base text-gray-500">
&copy; 1992-2021 Jp Valery. All rights reserved.
</p>
</div>
</div>
</footer>
);
}
Loading

0 comments on commit 429d1a6

Please sign in to comment.