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
8 changes: 8 additions & 0 deletions .mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": ["@playwright/mcp@latest"]
}
}
}
11 changes: 11 additions & 0 deletions frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,17 @@ <h1>Course Materials Assistant</h1>
</div>
</details>
</div>

<!-- Jay's Favorites -->
<div class="sidebar-section">
<details class="suggested-collapsible">
<summary class="suggested-header">Jay's Favorites</summary>
<div class="suggested-items">
<a class="suggested-link" href="https://www.baltimoreravens.com" target="_blank" rel="noopener noreferrer">Baltimore Ravens</a>
<a class="suggested-link" href="https://www.mlb.com/red-sox" target="_blank" rel="noopener noreferrer">Boston Red Sox</a>
</div>
</details>
</div>
</aside>

<!-- Main Chat Area -->
Expand Down
21 changes: 21 additions & 0 deletions frontend/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down