Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: サイト内の記事を意味する単語の表記ゆれを統一 #181

Merged
merged 1 commit into from
Feb 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/SideBar/NavBar/Links.astro
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const links: Link[] = [
href: "/tags",
},
{
title: "ブログ",
title: "アーカイブ",
icon: "tabler:archive",
href: "/archives",
},
Expand Down
2 changes: 1 addition & 1 deletion src/pages/archives/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const tabProps: TabsProps = {
---

<BaseLayout
title="ブログ"
title="アーカイブ"
description="東京理科大学 電子計算機研究会 プログラミング班"
og={{
url: Astro.site!,
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const contents: ContentType[] = [
link: "/about",
},
{
headerTitle: "最新ニュース",
headerTitle: "最新記事",
headerIcon: "fluent-emoji:newspaper",
posts: posts.slice(0, 3),
linkTitle: "記事一覧へ",
Expand Down