diff --git a/.github/labeler.yml b/.github/labeler.yml
deleted file mode 100644
index 9302245..0000000
--- a/.github/labeler.yml
+++ /dev/null
@@ -1,47 +0,0 @@
-home:
- - changed-files:
- - any-glob-to-any-file: "app/(home)/**"
-
-post:
- - changed-files:
- - any-glob-to-any-file: "app/post/**"
-
-category:
- - changed-files:
- - any-glob-to-any-file: "app/(category)/**"
-
-dock:
- - changed-files:
- - any-glob-to-any-file: "components/dock/**"
-
-pagination:
- - changed-files:
- - any-glob-to-any-file: "components/pagination/**"
-
-widget:
- - changed-files:
- - any-glob-to-any-file: "components/widgets/**"
-
-series:
- - changed-files:
- - any-glob-to-any-file: "components/series/**"
-
-comments:
- - changed-files:
- - any-glob-to-any-file: "components/comments/**"
-
-storybook:
- - changed-files:
- - any-glob-to-any-file: "stories/**"
-
-infra:
- - changed-files:
- - any-glob-to-any-file: ".github/**"
-
-test:
- - changed-files:
- - any-glob-to-any-file: "tests/**"
-
-util:
- - changed-files:
- - any-glob-to-any-file: "lib/**"
diff --git a/.github/labels.yml b/.github/labels.yml
deleted file mode 100644
index c15c138..0000000
--- a/.github/labels.yml
+++ /dev/null
@@ -1,45 +0,0 @@
-- name: feat
- color: "1d76db"
- description: New feature
-- name: chore
- color: "cccccc"
- description: Chore / infra
-- name: test
- color: "0e8a16"
- description: Testing
-- name: a11y
- color: "5319e7"
- description: Accessibility
-- name: home
- color: "0052cc"
- description: Home page
-- name: post
- color: "fbca04"
- description: Post detail
-- name: category
- color: "d93f0b"
- description: Category page
-- name: dock
- color: "5319e7"
- description: DockMenu
-- name: comments
- color: "0366d6"
- description: Giscus / Comments
-- name: widget
- color: "0b7285"
- description: Widgets / metrics
-- name: series
- color: "a2eeef"
- description: Series
-- name: pagination
- color: "7057ff"
- description: Pagination
-- name: util
- color: "6f42c1"
- description: Utils / helpers
-- name: infra
- color: "24292e"
- description: Infra / CI
-- name: storybook
- color: "ededed"
- description: Storybook
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 92f27f7..ef5564c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -24,7 +24,6 @@ jobs:
- run: pnpm typecheck
- run: pnpm lint
- - run: pnpm test:ci
- run: pnpm build
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml
deleted file mode 100644
index 37ae8e6..0000000
--- a/.github/workflows/labeler.yml
+++ /dev/null
@@ -1,17 +0,0 @@
-name: PR Labeler
-on:
- pull_request_target:
- types: [opened, synchronize, reopened]
-
-permissions:
- contents: read
- pull-requests: write
-
-jobs:
- label:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/labeler@v5
- with:
- repo-token: ${{ secrets.GITHUB_TOKEN }}
- configuration-path: .github/labeler.yml
diff --git a/.github/workflows/labels-sync.yml b/.github/workflows/labels-sync.yml
deleted file mode 100644
index 907e1c6..0000000
--- a/.github/workflows/labels-sync.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-name: Sync labels
-on:
- workflow_dispatch:
- push:
- paths:
- - .github/labels.yml
-
-permissions:
- issues: write
- contents: read
-
-jobs:
- labels:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v4
- with:
- sparse-checkout: .github/labels.yml
- - uses: EndBug/label-sync@v2
- with:
- config-file: .github/labels.yml
- delete-other-labels: false
diff --git a/src/app/(layout)/(shell)/_components/layout/SiteHeader.tsx b/src/app/(layout)/(shell)/_components/layout/SiteHeader.tsx
index fe124f2..7c1a3b4 100644
--- a/src/app/(layout)/(shell)/_components/layout/SiteHeader.tsx
+++ b/src/app/(layout)/(shell)/_components/layout/SiteHeader.tsx
@@ -38,14 +38,14 @@ export default function SiteHeader() {
"min-w-46 cursor-pointer ",
"hidden items-center gap-2 rounded-full",
"bg-neutral-200/50 ",
- "dark:border dark:border-foreground/15 dark:bg-background/40 pl-3 pr-2 py-1.5",
+ "dark:border dark:border-foreground/15 dark:bg-foreground/7 pl-3 pr-2 py-1",
"text-xs text-foreground/70 md:inline-flex"
)}
>
검색
-
+
⌘K
diff --git a/src/app/(layout)/posts/[slug]/_components/PostActions.tsx b/src/app/(layout)/posts/[slug]/_components/PostActions.tsx
index a8d4485..100174d 100644
--- a/src/app/(layout)/posts/[slug]/_components/PostActions.tsx
+++ b/src/app/(layout)/posts/[slug]/_components/PostActions.tsx
@@ -5,9 +5,13 @@ interface PostActionsProps {
variant?: "desktop" | "mobile";
title: string;
thumbnail?: string;
+ post: {
+ slug: string
+ };
}
export default function PostActions({
+ post,
variant = "desktop",
title,
thumbnail,
@@ -15,7 +19,7 @@ export default function PostActions({
if (variant === "mobile") {
return (
);
@@ -23,9 +27,9 @@ export default function PostActions({
return (