From b6caffb627b42ad563ed401e112e5d6f9fed47ba Mon Sep 17 00:00:00 2001 From: Jay Date: Fri, 20 Feb 2026 17:29:45 -0500 Subject: [PATCH 1/3] Add Jay's Favorites section to sidebar with Baltimore Ravens link Co-Authored-By: Claude Sonnet 4.6 --- frontend/index.html | 10 ++++++++++ frontend/style.css | 21 +++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/frontend/index.html b/frontend/index.html index f8e25a62f..6a3803ad7 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -49,6 +49,16 @@

Course Materials Assistant

+ + + diff --git a/frontend/style.css b/frontend/style.css index 825d03675..feb6daf30 100644 --- a/frontend/style.css +++ b/frontend/style.css @@ -634,6 +634,27 @@ details[open] .suggested-header::before { transform: translateX(2px); } +.suggested-link { + padding: 0.75rem 1rem; + background: var(--background); + border: 1px solid var(--border-color); + border-radius: 8px; + color: var(--text-primary); + font-size: 0.875rem; + text-decoration: none; + transition: all 0.2s ease; + display: block; + width: 100%; + box-sizing: border-box; +} + +.suggested-link:hover { + background: var(--surface-hover); + border-color: var(--primary-color); + color: var(--primary-color); + transform: translateX(2px); +} + /* Responsive Design */ @media (max-width: 768px) { .main-content { From 8e3714a65711a5e1e95c38a65c8d6ac00357130e Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 21 Feb 2026 00:17:31 +0000 Subject: [PATCH 2/3] Add Boston Red Sox link to Jay's Favorites sidebar section https://claude.ai/code/session_01JwUMTa2FNJbYprTJ3CDNvp --- frontend/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/index.html b/frontend/index.html index 6a3803ad7..bb47ae27f 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -56,6 +56,7 @@

Course Materials Assistant

Jay's Favorites From f1d63f71d8f174b7a2e54ea9c2fd313682b7f907 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 23 Feb 2026 14:39:04 +0000 Subject: [PATCH 3/3] Add Playwright MCP server configuration https://claude.ai/code/session_01RocX1r8b4bqzCd7TDZd4uv --- .mcp.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .mcp.json diff --git a/.mcp.json b/.mcp.json new file mode 100644 index 000000000..259a95910 --- /dev/null +++ b/.mcp.json @@ -0,0 +1,8 @@ +{ + "mcpServers": { + "playwright": { + "command": "npx", + "args": ["@playwright/mcp@latest"] + } + } +}