-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a7dcd1
commit 03eff4b
Showing
1 changed file
with
23 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,24 @@ | ||
'use client' | ||
import Giscus from "@giscus/react"; | ||
// To enable comments: | ||
// 1. Uncomment this component | ||
// 2. Update repo, repoId, and categoryId with your own giscus settings | ||
// 3. Visit https://giscus.app to get your settings | ||
|
||
export default function Comment() { | ||
return ( | ||
<Giscus | ||
id="comments" | ||
repo="notionpresso/nextjs-blog-template" | ||
repoId="R_kgDONDy8gg" | ||
category="Announcements" | ||
categoryId="DIC_kwDONDy8gs4CjpSV" | ||
mapping="pathname" | ||
strict="0" | ||
reactionsEnabled="1" | ||
emitMetadata="0" | ||
inputPosition="bottom" | ||
theme="preferred_color_scheme" | ||
lang="ko" | ||
loading="lazy" | ||
/> | ||
) | ||
} | ||
// export default function Comment() { | ||
// return ( | ||
// <Giscus | ||
// id="comments" | ||
// repo="" | ||
// repoId="" | ||
// category="Announcements" | ||
// categoryId="" | ||
// mapping="pathname" | ||
// strict="0" | ||
// reactionsEnabled="1" | ||
// emitMetadata="0" | ||
// inputPosition="bottom" | ||
// theme="preferred_color_scheme" | ||
// lang="ko" | ||
// loading="lazy" | ||
// /> | ||
// ) | ||
// } |