Skip to content

Commit

Permalink
docs: Add reference to @joncursi/next-base
Browse files Browse the repository at this point in the history
  • Loading branch information
joncursi committed Feb 4, 2020
1 parent 6640c14 commit 1529b66
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 8 deletions.
2 changes: 0 additions & 2 deletions .nowignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,3 @@
!now.json
!package.json
!package-lock.json
!routes.js
!server.js
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Web

🕸️ Website for my personal brand.
🕸️ Website for my personal brand. Based on
[`@joncursi/next-base`](https://github.com/joncursi/next-base).

[![CircleCI](https://circleci.com/gh/joncursi/web.svg?style=shield)](https://circleci.com/gh/joncursi/web)

Expand Down
2 changes: 1 addition & 1 deletion app/components/RenderMetaTags/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const RenderMetaTags: React.FC<Props> = ({
imageUrl = '/static/img/meta-default.jpg',
keywords,
noIndex,
title,
title = NAMES.APP,
}: Props): React.ReactElement<Props> => (
<Head>
{/* Descriptions */}
Expand Down
Binary file removed app/static/img/me-seo-thumbnail.jpg
Binary file not shown.
2 changes: 0 additions & 2 deletions app/views/Home/meta.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import RenderMetaTags from '~/components/RenderMetaTags';
const Meta: React.FC = (): React.ReactElement<any> => (
<RenderMetaTags
description="I'm a software engineer who builds top-notch web and mobile apps. Previously founded Cheddur, the social network of crypto. Follow me! 🤠"
imageUrl="/static/img/me-seo-thumbnail.jpg"
keywords={[
'cheddur',
'cheddur app',
Expand All @@ -22,7 +21,6 @@ const Meta: React.FC = (): React.ReactElement<any> => (
'youtube',
'youtuber',
]}
title="Jon Cursi"
/>
);

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@
"production:deploy:now": "now --dotenv=.env.production --force --debug",
"start": "unset NODE_ENV && dotenv -e .env -- node app/.next/server/index.js",
"test": "npm-run-all test:**",
"test:lint:js": "eslint . --ext .js --quiet",
"test:lint:js": "eslint . --ext .js --fix --quiet",
"test:lint:md": "markdownlint README.md --config node_modules/@joncursi/eslint-config/markdownlint.config.json",
"test:lint:ts": "eslint . --ext .ts,.tsx --quiet",
"test:lint:ts": "eslint . --ext .ts,.tsx --fix --quiet",
"test:types": "tsc --project app/tsconfig.json && tsc --noEmit --project server/tsconfig.json",
"test:unit": "unset NODE_ENV && dotenv -e .env.test -- jest --silent --maxWorkers=2"
},
Expand Down

0 comments on commit 1529b66

Please sign in to comment.