Skip to content

Inoue #1

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

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
86ee668
add:ホーム画面の設計
hiroto09 Feb 4, 2025
3216c5c
add:ホームページに各コースへのリンクを作成するコンポーネントを作成
hiroto09 Feb 5, 2025
e85aa47
ファイルの数の取得
hiroto09 Feb 8, 2025
d04d014
add:ローカルストレージから進捗の取得
hiroto09 Feb 8, 2025
a5d4ac1
add:ローカルストレージへの保存機能
hiroto09 Feb 10, 2025
042c07f
update:リンクカードの達成度の表示位置を右に変更した
hiroto09 Feb 10, 2025
09ff153
update:リンクカードのテキストの色を変更
hiroto09 Feb 13, 2025
d7f16a8
style : lint
hiroto09 Feb 14, 2025
7e14f01
style:00番取得の修正
hiroto09 Feb 14, 2025
61bc488
update:SendLocalの修正その他コメントの修正
hiroto09 Feb 14, 2025
adee3d5
hotfix:LinkListで参照先が間違っていたので修正
hiroto09 Feb 14, 2025
697f8ed
style:ローカルストレージ周りの修正
hiroto09 Feb 17, 2025
9349fb5
remove:components.css
hiroto09 Feb 17, 2025
cb08ebe
apdate:pngをwebpに変更
hiroto09 Feb 17, 2025
c774255
fix:Astroコンポーネントではclient:onlyダメだったから修正した
hiroto09 Feb 20, 2025
1a41b92
style:ファイル名の変更・変数名の変更
hiroto09 Feb 20, 2025
490aadf
add:Anserコンポーネントの追加
hiroto09 Mar 2, 2025
2abb511
style:lint
hiroto09 Mar 2, 2025
781d48a
style:paddingの調整
hiroto09 Mar 2, 2025
54f9f46
update:少しスタイルの変更
hiroto09 Mar 5, 2025
2abbffc
update:リンクカード周りの更新
hiroto09 Mar 5, 2025
bf8bae0
fix:余計な部分の解消
hiroto09 Mar 5, 2025
c8a45e6
style:間違ったコメントを削除
hiroto09 Mar 13, 2025
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
17 changes: 10 additions & 7 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
import partytown from "@astrojs/partytown";
import react from "@astrojs/react";
import starlight from "@astrojs/starlight";
import remarkMermaid from "@southball/remark-mermaid";
import partytown from "@astrojs/partytown";
import { defineConfig } from "astro/config";
import wikiLinkPlugin from "remark-wiki-link-plus";
import compress from "astro-compress";
import icon from "astro-icon";
import metaTags from "astro-meta-tags";
import { defineConfig } from "astro/config";
import wikiLinkPlugin from "remark-wiki-link-plus";

// https://astro.build/config
export default defineConfig({

integrations: [
metaTags(),
icon({
Expand All @@ -35,8 +36,8 @@ export default defineConfig({
defaultLocale: "ja",
locales: {
root: {
label: '日本語',
lang: 'ja',
label: "日本語",
lang: "ja",
},
},
logo: {
Expand All @@ -56,6 +57,7 @@ export default defineConfig({
"src/styles/global.css",
"src/styles/fonts.css",
],

sidebar: [
{
label: "ホーム",
Expand All @@ -67,7 +69,7 @@ export default defineConfig({
{
label: "困ったときは",
autogenerate: { directory: "help/" },
}
},
],
},
{
Expand All @@ -88,11 +90,12 @@ export default defineConfig({
},
{
label: "ハッカソン出れるもんコース",
autogenerate: { directory: "textbook/web/web/for-hackathons" },
autogenerate: { directory: "textbook/web/for-hackathons" },
},
],
},
],

}),
react(),
],
Expand Down
Loading