Skip to content

Commit ad9077d

Browse files
SKOLZjanosh
andauthored
Updated GraphCMS Url to match the current brand name 'hygraph' (#139)
* updated graphcms to match their current brand name 'hygraph' * update site Elementari, now named MatterViz --------- Co-authored-by: Janosh Riebesell <janosh.riebesell@gmail.com>
1 parent 2491b34 commit ad9077d

File tree

9 files changed

+31
-33
lines changed

9 files changed

+31
-33
lines changed

.github/workflows/link-check.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,3 @@ jobs:
2020
uses: lycheeverse/lychee-action@v2
2121
with:
2222
args: --exclude '%7B' --exclude-path ./site/src/sites.yml -- ./**/*.{md,svelte,ts,yml}
23-
env:
24-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ repos:
3737
args: [--config-file, .github/yamllint.yml]
3838

3939
- repo: https://github.com/igorshubovych/markdownlint-cli
40-
rev: v0.44.0
40+
rev: v0.45.0
4141
hooks:
4242
- id: markdownlint
4343
# MD013: line too long
@@ -62,7 +62,7 @@ repos:
6262
exclude: ^site/src/sites.yml|.pre-commit-config.yaml$
6363

6464
- repo: https://github.com/pre-commit/mirrors-eslint
65-
rev: v9.27.0
65+
rev: v9.29.0
6666
hooks:
6767
- id: eslint
6868
types: [file]

readme.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -648,10 +648,10 @@ Awesome examples of SvelteKit in the wild. Visit **[janosh.github.io/awesome-sve
648648

649649
uses: [TypeScript], [MDsveX], [Rehype], [Remark], [PNPM], [Vitest], [Playwright]
650650

651-
1. **[Elementari](https://janosh.github.io/elementari)**&nbsp;
652-
[[code](https://github.com/janosh/elementari)]&ensp;
653-
<a href="https://github.com/janosh/elementari/stargazers">
654-
<img src="https://img.shields.io/github/stars/janosh/elementari?logo=github" alt="GitHub stars" valign="middle">
651+
1. **[MatterViz](https://janosh.github.io/matterviz)**&nbsp;
652+
[[code](https://github.com/janosh/matterviz)]&ensp;
653+
<a href="https://github.com/janosh/matterviz/stargazers">
654+
<img src="https://img.shields.io/github/stars/janosh/matterviz?logo=github" alt="GitHub stars" valign="middle">
655655
</a>
656656

657657
Interactive visualizations for materials science: periodic tables, 3d crystal structures (Molecules coming soon), Bohr atoms, nuclei, heatmaps, scatter plots.<br>
@@ -794,15 +794,15 @@ Awesome examples of SvelteKit in the wild. Visit **[janosh.github.io/awesome-sve
794794

795795
uses: [TypeScript], [Tailwind], [Spotify Web API], [Filepond], [PNPM], [Netlify]
796796

797-
1. **[GraphCMS Starter Blog](https://scottspence.com/2021/05/06/graphcms-svelte-starter)**&nbsp;
797+
1. **[Hygraph Starter Blog](https://scottspence.com/2021/05/06/graphcms-svelte-starter)**&nbsp;
798798
[[code](https://github.com/spences10/sveltekit-starter-blog)]&ensp;
799799
<a href="https://github.com/spences10/sveltekit-starter-blog/stargazers">
800800
<img src="https://img.shields.io/github/stars/spences10/sveltekit-starter-blog?logo=github" alt="GitHub stars" valign="middle">
801801
</a>
802802

803-
This blog starter shows how to use SvelteKit with GraphCMS.<br>
803+
This blog starter shows how to use SvelteKit with Hygraph.<br>
804804

805-
uses: [Vercel], [Tailwind], [SCSS], [GraphCMS]
805+
uses: [Vercel], [Tailwind], [SCSS], [Hygraph]
806806

807807
1. **[Svelte Summit Fall 2021](https://sveltesummit.com)**&nbsp;
808808
[[code](https://github.com/svelte-society/svelte-summit)]&ensp;
@@ -908,14 +908,14 @@ Awesome examples of SvelteKit in the wild. Visit **[janosh.github.io/awesome-sve
908908
[gitpod]: https://gitpod.io
909909
[google analytics]: https://analytics.google.com
910910
[google tag manager]: https://tagmanager.google.com
911-
[graphcms]: https://graphcms.com
912911
[graphql]: https://graphql.org
913912
[gsap]: https://greensock.com/gsap
914913
[highlight.js]: https://highlightjs.org
915914
[huggingface hub]: https://github.com/huggingface/huggingface_hub
916915
[huggingface inference]: https://github.com/huggingface/text-generation-inference
917916
[hugo]: https://gohugo.io
918917
[husky]: https://github.com/typicode/husky
918+
[hygraph]: https://hygraph.com
919919
[ibm carbon]: https://carbondesignsystem.com
920920
[iconify]: https://iconify.design
921921
[iconoir]: https://iconoir.com

site/src/routes/+error.svelte

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<script lang="ts">
2-
import { page } from '$app/stores'
2+
import { page } from '$app/state'
33
import { homepage, name } from '$site/package.json'
44
import Icon from '@iconify/svelte'
55
66
let online: boolean = $state(true)
77
</script>
88

99
<svelte:head>
10-
<title>Error {$page.status} &bull; {name}</title>
10+
<title>Error {page.status} &bull; {name}</title>
1111
</svelte:head>
1212

1313
<svelte:window bind:online />
1414

1515
<div>
16-
<h1>Error {String($page.status).replace(`0`, `😵`)}: {$page.error?.message}</h1>
17-
{#if $page.status >= 500}
16+
<h1>Error {String(page.status).replace(`0`, `😵`)}: {page.error?.message}</h1>
17+
{#if page.status >= 500}
1818
<p>
1919
If page reloading doesn't help, please raise an issue on
2020
<a href="{homepage}/issues" target="_blank" rel="noreferrer">GitHub</a>. Thanks! 🙏

site/src/sites.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -318,21 +318,21 @@
318318
name: Puru Vijay
319319
location: Jaipur
320320
company: null
321-
- title: GraphCMS Starter Blog
321+
- title: Hygraph Starter Blog
322322
url: https://scottspence.com/2021/05/06/graphcms-svelte-starter
323323
repo: https://github.com/spences10/sveltekit-starter-blog
324-
description: This blog starter shows how to use SvelteKit with GraphCMS.
324+
description: This blog starter shows how to use SvelteKit with Hygraph.
325325
uses:
326326
- Vercel
327327
- Tailwind
328328
- SCSS
329-
- GraphCMS
329+
- Hygraph
330330
tags:
331331
- blog
332332
- open source
333333
date_created: 2021-05-16T00:00:00.000Z
334334
date_added: 2021-06-14T00:00:00.000Z
335-
slug: graphcms-starter-blog
335+
slug: hygraph-starter-blog
336336
repo_stars: 10
337337
contributors:
338338
- github: spences10
@@ -1547,10 +1547,10 @@
15471547
name: Zhi Nie
15481548
location: Beijing, China
15491549
company: null
1550-
- title: Elementari
1551-
url: https://janosh.github.io/elementari
1552-
repo: https://github.com/janosh/elementari
1553-
npm: https://npmjs.com/package/elementari
1550+
- title: MatterViz
1551+
url: https://janosh.github.io/matterviz
1552+
repo: https://github.com/janosh/matterviz
1553+
npm: https://npmjs.com/package/matterviz
15541554
description: >-
15551555
Interactive visualizations for materials science: periodic tables, 3d
15561556
crystal structures (Molecules coming soon), Bohr atoms, nuclei, heatmaps,
@@ -1574,7 +1574,7 @@
15741574
- science
15751575
date_created: 2022-05-31T00:00:00.000Z
15761576
date_added: 2022-06-02T00:00:00.000Z
1577-
slug: elementari
1577+
slug: matterviz
15781578
repo_stars: 152
15791579
contributors:
15801580
- github: janosh
File renamed without changes.

sites.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@
103103
date_created: 2021-05-06
104104
date_added: 2021-06-11
105105

106-
- title: GraphCMS Starter Blog
106+
- title: Hygraph Starter Blog
107107
url: https://scottspence.com/2021/05/06/graphcms-svelte-starter
108108
repo: https://github.com/spences10/sveltekit-starter-blog
109-
description: This blog starter shows how to use SvelteKit with GraphCMS.
110-
uses: [Vercel, Tailwind, SCSS, GraphCMS]
109+
description: This blog starter shows how to use SvelteKit with Hygraph.
110+
uses: [Vercel, Tailwind, SCSS, Hygraph]
111111
tags: [blog]
112112
date_created: 2021-05-16
113113
date_added: 2021-06-14
@@ -428,10 +428,10 @@
428428
date_created: 2022-01-24
429429
date_added: 2022-05-19
430430

431-
- title: Elementari
432-
url: https://janosh.github.io/elementari
433-
repo: https://github.com/janosh/elementari
434-
npm: https://npmjs.com/package/elementari
431+
- title: MatterViz
432+
url: https://janosh.github.io/matterviz
433+
repo: https://github.com/janosh/matterviz
434+
npm: https://npmjs.com/package/matterviz
435435
description:
436436
'Interactive visualizations for materials science: periodic tables, 3d crystal
437437
structures (Molecules coming soon), Bohr atoms, nuclei, heatmaps, scatter plots.'

tools.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ github pages: https://pages.github.com
3232
gitpod: https://gitpod.io
3333
google analytics: https://analytics.google.com
3434
google tag manager: https://tagmanager.google.com
35-
graphcms: https://graphcms.com
3635
graphql: https://graphql.org
3736
gsap: https://greensock.com/gsap
3837
highlight.js: https://highlightjs.org
3938
huggingface hub: https://github.com/huggingface/huggingface_hub
4039
huggingface inference: https://github.com/huggingface/text-generation-inference
4140
hugo: https://gohugo.io
4241
husky: https://github.com/typicode/husky
42+
hygraph: https://hygraph.com
4343
ibm carbon: https://carbondesignsystem.com
4444
iconify: https://iconify.design
4545
iconoir: https://iconoir.com

0 commit comments

Comments
 (0)