Skip to content

Commit

Permalink
fix: my domain copyright
Browse files Browse the repository at this point in the history
Signed-off-by: Innei <i@innei.in>
  • Loading branch information
Innei committed Mar 18, 2024
1 parent dcd2d33 commit fa650b9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/app/(app)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ const SayHi = () => {
'margin: 1em 0; padding: 5px 0; background: #efefef;',
)
console.log(
`%c Shiro ${window.version} %c https://innei.ren `,
`%c Shiro ${window.version} %c https://innei.in `,
'color: #fff; margin: 1em 0; padding: 5px 0; background: #39C5BB;',
'margin: 1em 0; padding: 5px 0; background: #efefef;',
)
Expand Down
4 changes: 2 additions & 2 deletions src/components/common/ErrorBoundary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ const FallbackComponent = () => {
return (
<div className="flex w-full flex-col py-6 center">
Something went wrong. Please contract to{' '}
<a href="mailto:i@innei.ren" className="shiro-link--underline">
i@innei.ren
<a href="mailto:i@innei.in" className="shiro-link--underline">
i@innei.in
</a>
.
<StyledButton
Expand Down
2 changes: 1 addition & 1 deletion src/components/layout/footer/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const defaultLinkSections: LinkSection[] = [
},
{
name: '发邮件',
href: 'mailto:i@innei.ren',
href: 'mailto:i@innei.in',
external: true,
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/link/MLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const MLink: FC<{
if (
toUrlParser.host === locateUrl.host ||
(process.env.NODE_ENV === 'development' &&
toUrlParser.host === 'innei.ren')
toUrlParser.host === 'innei.in')
) {
e.preventDefault()
const pathArr = toUrlParser.pathname.split('/').filter(Boolean)
Expand Down

0 comments on commit fa650b9

Please sign in to comment.