Skip to content

Commit

Permalink
update/bio (#78)
Browse files Browse the repository at this point in the history
* fix: update note url resolving method and 404 page

* feat(bio): update bio

* fixup! fix: update note url resolving method and 404 page
  • Loading branch information
josix authored Dec 9, 2022
1 parent 490ec98 commit 28a88db
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
13 changes: 7 additions & 6 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ module.exports = {
image: `blog-icon.png`,
author: {
name: `Josix`,
summary: `Hi, I'm Josix, a software engineer. I'm obsessed with building tools and love to learn new things. Besides coding,
I like to do some hacking stuff for my daily life, like building knowledge management systems, habit tracking systems, financial management systems, etc.
Applying knowledge and experience to solve problems and make things more convenient is my passion, and I'm always enjoying it.`,
summary: `Hi, I'm Josix, a software engineer. I love building tools and learning new things.
In addition to coding, I enjoy hacking to improve my daily life. For example, I've built knowledge management systems, habit tracking systems,
and financial management systems. I'm passionate about using my knowledge and experience to solve problems and make things more convenient,
and I always enjoy doing it.` ,
},
description: `This is my personal blog, mainly focusing on software development, programming, and some of my learning notes.
Hope you enjoy it and find something useful here.`,
description: `This is my personal blog, where I write about software development, programming, and some of my learning notes.
I hope you enjoy it and find something useful here.`,
siteUrl: `https://josix.tw/`,
social: {
twitter: `josixisoj`,
Expand Down Expand Up @@ -184,4 +185,4 @@ module.exports = {
},
`gatsby-plugin-catch-links`
],
}
}
4 changes: 4 additions & 0 deletions src/utils/typography.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ Wordpress2016.overrideThemeStyles = (config) => {
boxShadow: `none`,
color: "#945a47",
},
"a:hover": {
textDecoration: "underline",
textUnderlineOffset: "4px",
},
"body": {
backgroundColor: "#FEFCFC",
}
Expand Down
2 changes: 1 addition & 1 deletion styles/pages/blog-note.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.header__title {
@apply font-serif mb-0 mt-2 text-4xl md:text-5xl ;
@apply font-serif mb-0 mt-2 text-4xl md:text-5xl;
}

.header__date {
Expand Down

0 comments on commit 28a88db

Please sign in to comment.