Skip to content
Open
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
4 changes: 4 additions & 0 deletions .Jules/palette.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@
## 2024-06-21 - Added skip-to-content link
**Learning:** Found a missing skip-to-content link, which is a key accessibility feature to help keyboard and screen reader users bypass navigation. Additionally learned that giving `<main>` `tabindex="-1"` and removing its outline when `:focus-visible` ensures proper focus handling after clicking the skip link without disruptive visual outlines.
**Action:** Always include a skip-to-content link near the start of the `body` and manage target focus appropriately.

## 2024-06-24 - Anchor Link Scroll Padding
**Learning:** μŠ€ν‹°ν‚€ 헀더가 적용된 νŽ˜μ΄μ§€μ—μ„œ 액컀 링크둜 이동 μ‹œ, κΈ°λ³Έ 슀크둀 λ™μž‘μ€ νƒ€κ²Ÿ μš”μ†Œμ˜ 상단을 λΈŒλΌμš°μ € 상단에 λ§žμΆ”κΈ° λ•Œλ¬Έμ— μ½˜ν…μΈ κ°€ 헀더에 κ°€λ €μ§€λŠ” λ¬Έμ œκ°€ λ°œμƒν•¨μ„ ν™•μΈν–ˆμŠ΅λ‹ˆλ‹€.
**Action:** μŠ€ν‹°ν‚€ ν—€λ”μ˜ λ†’μ΄λ§ŒνΌ `html` μš”μ†Œμ— `scroll-padding-top` 속성을 μΆ”κ°€ν•˜μ—¬ 액컀 링크 이동 μ‹œμ—λ„ μ μ ˆν•œ 여백을 ν™•λ³΄ν•˜κ³  접근성을 κ°œμ„ ν•©λ‹ˆλ‹€.
108 changes: 108 additions & 0 deletions opencode.jsonc
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
{
"$schema": "https://opencode.ai/config.json",
"model": "github-models/openai/gpt-5",
"small_model": "github-models/deepseek/deepseek-v3-0324",
"enabled_providers": ["github-models"],
"mcp": {
"codegraph": {
"type": "local",
"command": [
"npx",
"-y",
"@colbymchenry/codegraph@0.9.9",
"serve", "--mcp"
],
"enabled": true,
"environment": {
"NPM_CONFIG_IGNORE_SCRIPTS": "true",
"NPM_CONFIG_LOGLEVEL": "error"
}
},
"deepwiki": {
"type": "remote",
"url": "https://mcp.deepwiki.com/mcp",
"enabled": true,
"timeout": 10000
},
"context7": {
"type": "local",
"command": [
"npx",
"-y",
"@upstash/context7-mcp@3.1.0",
"--transport",
"stdio"
],
"enabled": true,
"timeout": 10000,
"environment": {
"NPM_CONFIG_IGNORE_SCRIPTS": "true",
"NPM_CONFIG_LOGLEVEL": "error"
}
},
"web_search": {
"type": "local",
"command": [
"npx",
"-y",
"@guhcostan/web-search-mcp@1.0.5"
],
"enabled": true,
"timeout": 10000,
"environment": {
"NPM_CONFIG_IGNORE_SCRIPTS": "true",
"NPM_CONFIG_LOGLEVEL": "error"
}
}
},
"permission": {
"edit": "deny",
"bash": "deny",
"read": "allow",
"grep": "allow",
"glob": "allow",
"list": "allow",
"task": "deny",
"webfetch": "deny",
"websearch": "deny",
"lsp": "deny",
"external_directory": "allow"
},
"provider": {
"github-models": {
"npm": "@ai-sdk/openai-compatible",
"name": "GitHub Models",
"options": {
"baseURL": "https://models.github.ai/inference",
"apiKey": "{env:STRIX_GITHUB_MODELS_TOKEN}"
},
"models": {
"openai/gpt-5": {
"name": "OpenAI GPT-5",
"tool_call": true,
"limit": {
"context": 200000,
"output": 100000
}
},
"deepseek/deepseek-r1-0528": {
"name": "DeepSeek R1 0528",
"tool_call": true,
"reasoning": true,
"limit": {
"context": 128000,
"output": 4096
}
},
"deepseek/deepseek-v3-0324": {
"name": "DeepSeek V3 0324",
"tool_call": true,
"limit": {
"context": 128000,
"output": 4096
}
}
}
}
}
}
4 changes: 3 additions & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
--line: #d6dad8;
--white: #ffffff;
--shadow: 0 24px 70px rgba(22, 38, 61, 0.12);
--header-offset: 81px;
}

* {
Expand All @@ -23,6 +24,7 @@

html {
scroll-behavior: smooth;
scroll-padding-top: var(--header-offset);
}
Comment thread
seonghobae marked this conversation as resolved.

body {
Expand Down Expand Up @@ -113,7 +115,7 @@ a {
}

.hero {
min-height: min(620px, calc(100vh - 81px));
min-height: min(620px, calc(100vh - var(--header-offset)));
display: grid;
grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
gap: clamp(32px, 5vw, 72px);
Expand Down
Loading