-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: set default value with withDefaults
- Loading branch information
Showing
14 changed files
with
63 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,7 @@ const zh: LocaleSchema = { | |
}, | ||
}, | ||
'footer': { | ||
'eof': '这是最后一页……至少现在是的。', | ||
'last-update': '最近更新:', | ||
}, | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,14 +25,12 @@ interface LinkInfo extends LinkItemProps { | |
const linksPersonal: LinkInfo[] = [ | ||
{ | ||
icon: Email, | ||
iconAlt: 'icon of email', | ||
type: 'email', | ||
name: '[email protected]', | ||
link: 'mailto:[email protected]', | ||
}, | ||
{ | ||
icon: Riw, | ||
iconAlt: 'icon of blog', | ||
type: 'blog', | ||
name: 'Reinventing the Wheel', | ||
link: 'https://blog.idl.ist', | ||
|
@@ -42,35 +40,30 @@ const linksPersonal: LinkInfo[] = [ | |
const linksPublic: LinkInfo[] = [ | ||
{ | ||
icon: X, | ||
iconAlt: 'icon of twitter', | ||
type: 'twitter', | ||
name: '@i_dlist', | ||
link: 'https://x.com/i_dlist', | ||
}, | ||
{ | ||
icon: Bluesky, | ||
iconAlt: 'icon of bluesky', | ||
type: 'bluesky', | ||
name: '@idl.ist', | ||
link: 'https://bsky.app/profile/idl.ist', | ||
}, | ||
{ | ||
icon: Discord, | ||
iconAlt: 'icon of discord', | ||
type: 'discord', | ||
name: '@i_dlist', | ||
link: 'https://discord.com/', | ||
}, | ||
{ | ||
icon: GitHub, | ||
iconAlt: 'icon of github', | ||
type: 'github', | ||
name: '@idlist', | ||
link: 'https://github.com/idlist', | ||
}, | ||
{ | ||
icon: SoundCloud, | ||
iconAlt: 'icon of soundcloud', | ||
type: 'soundcloud', | ||
name: '@idlist', | ||
link: 'https://soundcloud.com/idlist', | ||
|