diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index ce178d7..bbc96bc 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -3,8 +3,7 @@ name: Bug report
about: Create a report to help us improve
title: "[BUG] "
labels: bug
-assignees: ''
-
+assignees: ""
---
**Describe the bug**
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
index 4a439c2..a22144f 100644
--- a/.github/ISSUE_TEMPLATE/feature_request.md
+++ b/.github/ISSUE_TEMPLATE/feature_request.md
@@ -2,9 +2,8 @@
name: Feature request
about: Suggest an idea for this project
title: "[Feature Request]"
-labels: ''
-assignees: ''
-
+labels: ""
+assignees: ""
---
**Is your feature request related to a problem? Please describe.**
diff --git a/.github/ISSUE_TEMPLATE/question-and-answer.md b/.github/ISSUE_TEMPLATE/question-and-answer.md
index 10cd99e..0670e0e 100644
--- a/.github/ISSUE_TEMPLATE/question-and-answer.md
+++ b/.github/ISSUE_TEMPLATE/question-and-answer.md
@@ -3,8 +3,7 @@ name: Question And Answer
about: Ask questions that are unclear or unclear about this project.
title: "[Q & A]"
labels: question
-assignees: ''
-
+assignees: ""
---
Describe your problems here.
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
index 5cdb187..4453da1 100644
--- a/CODE_OF_CONDUCT.md
+++ b/CODE_OF_CONDUCT.md
@@ -17,23 +17,23 @@ diverse, inclusive, and healthy community.
Examples of behavior that contributes to a positive environment for our
community include:
-* Demonstrating empathy and kindness toward other people
-* Being respectful of differing opinions, viewpoints, and experiences
-* Giving and gracefully accepting constructive feedback
-* Accepting responsibility and apologizing to those affected by our mistakes,
+- Demonstrating empathy and kindness toward other people
+- Being respectful of differing opinions, viewpoints, and experiences
+- Giving and gracefully accepting constructive feedback
+- Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
-* Focusing on what is best not just for us as individuals, but for the
+- Focusing on what is best not just for us as individuals, but for the
overall community
Examples of unacceptable behavior include:
-* The use of sexualized language or imagery, and sexual attention or
+- The use of sexualized language or imagery, and sexual attention or
advances of any kind
-* Trolling, insulting or derogatory comments, and personal or political attacks
-* Public or private harassment
-* Publishing others' private information, such as a physical or email
+- Trolling, insulting or derogatory comments, and personal or political attacks
+- Public or private harassment
+- Publishing others' private information, such as a physical or email
address, without their explicit permission
-* Other conduct which could reasonably be considered inappropriate in a
+- Other conduct which could reasonably be considered inappropriate in a
professional setting
## Enforcement Responsibilities
@@ -106,7 +106,7 @@ Violating these terms may lead to a permanent ban.
### 4. Permanent Ban
**Community Impact**: Demonstrating a pattern of violation of community
-standards, including sustained inappropriate behavior, harassment of an
+standards, including sustained inappropriate behavior, harassment of an
individual, or aggression toward or disparagement of classes of individuals.
**Consequence**: A permanent ban from any sort of public interaction within
diff --git a/components/readerpage/ShareButtons.tsx b/components/readerpage/ShareButtons.tsx
index a8276e6..e0e46d7 100644
--- a/components/readerpage/ShareButtons.tsx
+++ b/components/readerpage/ShareButtons.tsx
@@ -11,26 +11,26 @@ export const ShareButtons = (props: {
title: string;
quote?: string | null;
}) => {
- const url = `https://${Config.SiteDomain}/blog/${props.postId}`;
+ const postURL = `https://${Config.SiteDomain}/blog/${props.postId}`;
const copyShareText = `${props.title} ${props.subtitle ? `- ${props.subtitle}` : ""} - ${
Config.Nickname
- }'s Blog ${url}`;
+ }'s Blog ${postURL}`;
const { toast } = useToast();
return (
{props.allowShare != false ? (
<>
{"SHARE :"}
-
+
-
+
-
+
-
+ {
return (
-
+
{"TABLE OF CONTENTS"}
diff --git a/components/utils/Footer.tsx b/components/utils/Footer.tsx
index 847830e..8b66c7c 100644
--- a/components/utils/Footer.tsx
+++ b/components/utils/Footer.tsx
@@ -1,5 +1,5 @@
import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogTrigger } from "@/components/ui/dialog";
-import { RSSFeedLink } from "@/consts/consts";
+import { CopyrightAnnouncement, RSSFeedURL } from "@/consts/consts";
import { Config } from "@/data/config";
import Link from "next/link";
import { useState } from "react";
@@ -37,9 +37,7 @@ export const Footer = () => {
)}