Skip to content

Commit

Permalink
add ink list to fountain pens page
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel James committed Dec 18, 2023
1 parent 86e4565 commit 89a8783
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 5 deletions.
45 changes: 42 additions & 3 deletions data/inks.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,39 @@ export default [
color: 'rgb(31 78 108)',
shimmer: 'rgb(200 200 200)',
},
{
id: 'diamine purple pazzazz',
name: 'Diamine Purple Pazzazz',
color: 'rgb(87, 28, 97)',
shimmer: 'rgb(255 204 0)',
},
{
id: 'diamine moon dust',
name: 'Diamine Moon Dust',
color: 'rgb(145 156 163)',
shimmer: 'rgb(200 200 200)',
},
{
id: 'diamine sparkling shadows',
name: 'Diamine Sparkling Shadows',
color: 'rgb(133 131 127)',
shimmer: 'rgb(255 204 0)',
},
{
id: 'pilot iroshizuku yama-guri',
name: 'Pilot Iroshizuku Yama-guri',
color: 'rgb(105 64 50)',
},
{
id: 'pilot iroshizuku syo-ro',
name: 'Pilot Iroshizuku Syo-ro',
color: 'rgb(36 152 158)',
},
{
id: 'pilot iroshizuku murasaki-shikibu',
name: 'Pilot Iroshizuku Murasaki-shikibu',
color: 'rgb(116 53 204)',
},
{
id: 'sailor shikiori yamadori',
name: 'Sailor Shikiori Yamadori',
Expand All @@ -32,14 +60,25 @@ export default [
color: 'rgb(255 155 194)',
},
{
id: 'diamine oxblood',
name: 'Diamine Oxblood',
id: 'diamine passion red',
name: 'Diamine Passion Red',
color: 'rgb(255 0 0)',
},
{
id: 'diamine golden ivy',
name: 'Diamine Golden Ivy',
color: 'rgb(6 106 24)',
shimmer: 'rgb(255 204 0)',
}
},
{
id: 'diamine little mo',
name: 'Diamine Little Mo',
color: 'rgb(30 47 158)',
sheen: 'rgb(158 30 154)',
},
{
id: 'diamine autumn oak',
name: 'Diamine Autumn Oak',
color: 'rgb(255 174 0)',
},
]
24 changes: 22 additions & 2 deletions posts/fountain-pens.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@ export const meta = {
tags: ['personal'],
}

Key:
import inks from '@/data/inks'

## Key

- <Ink name="Normal ink" color="rgb(0, 136, 235)" />
- <Ink name="Shimmering ink" color="rgb(0, 136, 235)" shimmer="rgb(232, 213, 0)" />
- <Ink name="Iridescent/sheening ink" color="rgb(0, 136, 235)" sheen="rgb(255, 0, 119)" />

## List of pens

<Image src="https://res.cloudinary.com/cesque/image/upload/v1675958351/fountain-pens/photo_3_n5oi32.jpg" />

- **Pen**: TWSBI Eco Fountain Pen Clear 1.1
Expand Down Expand Up @@ -101,4 +106,19 @@ Key:
<Image src="https://res.cloudinary.com/cesque/image/upload/v1675958350/fountain-pens/photo_19_uwcg3n.jpg" />

- **Pen**: Kaweco Perkeo Retro Block M
- **Ink**: <Ink ink="pilot iroshizuku yama-guri" />
- **Ink**: <Ink ink="pilot iroshizuku yama-guri" />

## List of inks

<ul>
{
inks
.sort((a, b) => a.name.localeCompare(b.name))
.map(ink => {
return <li>
<Ink ink={ ink.id } />
</li>
})
}
<li>Plus a couple of older standard blue inks</li>
</ul>

1 comment on commit 89a8783

@vercel
Copy link

@vercel vercel bot commented on 89a8783 Dec 18, 2023

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

exolith – ./

exolith.vercel.app
exolith-git-main-cesque.vercel.app
exolith-cesque.vercel.app
exolith.cesque.com

Please sign in to comment.