Skip to content

Commit

Permalink
Merge pull request #43 from Loping151/main
Browse files Browse the repository at this point in the history
add USER_SITE into config
  • Loading branch information
Loping151 authored Sep 20, 2024
2 parents 993227b + b8942ee commit 48257a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Footer.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
import { USER_NAME } from "../consts";
import { USER_SITE } from "../consts";
---

<footer
Expand All @@ -21,7 +22,7 @@ import { USER_NAME } from "../consts";
</svg>
<p>
Copyright © <a
href="https://www.saroprock.com"
href={USER_SITE}
target="_blank"
class="font-bold">{USER_NAME}</a
>
Expand Down
1 change: 1 addition & 0 deletions src/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export const DATE_FORMAT = "ddd MMM DD YYYY";

// User profile information
export const USER_NAME = "EveSunMaple";
export const USER_SITE = "https://www.saroprock.com"
export const USER_AVATAR = "/profile.webp";

// Server and transition settings
Expand Down

0 comments on commit 48257a0

Please sign in to comment.