Skip to content

Commit

Permalink
chore: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
jpvalery committed Mar 4, 2021
1 parent 2396a08 commit 1973b9d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
## Overview

Codebase for [https://jpvalery.photo](https://jpvalery.photo) my photography portfolio.
Current iteration is built using Next.js + TailwindCSS and pulls content from Contentful. It was launched in March 2021.
Current iteration is built using Next.js + TailwindCSS and pulls content from Contentful. It was launched in March 2021.

### Features

Expand All @@ -23,4 +23,4 @@ Current iteration is built using Next.js + TailwindCSS and pulls content from Co
> Inspire yourself and tinker all you want, just give credit and don't do a mindless copy-paste.
> Previous iteration was built using Contentful, Netlify, and Gatsby V2; and was launched in January 2019. Based on [@iammatthias/.com](https://github.com/iammatthias/.com). Without Matthias' work, I'll still be on format or whatever service.
> Previous iteration was built using Contentful, Netlify, and Gatsby V2; and was launched in January 2019. Based on [@iammatthias/.com](https://github.com/iammatthias/.com). Without Matthias' work, I'll still be on format or whatever service.
4 changes: 3 additions & 1 deletion components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ export default function Header() {
<div className="max-w-7xl mx-auto sticky top-0 z-50 pt-4 bg-gradient-to-b from-eigengrau">
<div className="flex justify-between py-6 items-center">
<NextLink href="/">
<span className="font-mono text-xl font-black cursor-pointer">JP VALERY</span>
<span className="font-mono text-xl font-black cursor-pointer">
JP VALERY
</span>
</NextLink>

<div className="-mr-2 -my-2 md:hidden">
Expand Down
14 changes: 7 additions & 7 deletions next-seo-config.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
const title = 'Jp Valery - Photographer documenting spaces and people'
const description =
'Selected shots from a photographer relentlessly documenting and exploring spaces and people.'
const siteUrl = "https://jpvalery.photo"
const siteUrl = 'https://jpvalery.photo'

const SEO = {
title: title,
description: description,
canonical: siteUrl,
openGraph: {
type: "website",
locale: "en_CA",
type: 'website',
locale: 'en_CA',
url: siteUrl,
title: title,
description: description,
Expand All @@ -23,10 +23,10 @@ const SEO = {
],
},
twitter: {
handle: "@jpvalery",
handle: '@jpvalery',
site: siteUrl,
cardType: "summary_large_image",
cardType: 'summary_large_image',
},
};
}

export default SEO;
export default SEO

0 comments on commit 1973b9d

Please sign in to comment.