Skip to content
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
5 changes: 3 additions & 2 deletions frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
<body>
<div class="container">
<header>
<h1>Course Materials Assistant</h1>
<p class="subtitle">Ask questions about courses, instructors, and content</p>
<h1>🎓 Course Materials Assistant</h1>
<p class="subtitle">AI-powered chatbot that helps you explore course materials using intelligent search and retrieval</p>
<p class="description">Ask questions about course content, get detailed explanations, and discover connections across your learning materials with the power of RAG (Retrieval-Augmented Generation) technology.</p>
</header>

<div class="main-content">
Expand Down
33 changes: 29 additions & 4 deletions frontend/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,13 @@ body {
padding: 0;
}

/* Header - Hidden */
/* Header */
header {
display: none;
background: linear-gradient(135deg, var(--surface) 0%, var(--background) 100%);
border-bottom: 1px solid var(--border-color);
padding: 2rem;
text-align: center;
box-shadow: var(--shadow);
}

header h1 {
Expand All @@ -62,9 +66,21 @@ header h1 {
}

.subtitle {
font-size: 0.95rem;
font-size: 1.1rem;
color: var(--text-secondary);
margin-top: 0.5rem;
font-weight: 500;
}

.description {
font-size: 0.9rem;
color: var(--text-secondary);
margin-top: 0.75rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
line-height: 1.6;
opacity: 0.9;
}

/* Main Content Area with Sidebar */
Expand Down Expand Up @@ -671,13 +687,22 @@ details[open] .suggested-header::before {
}

header {
padding: 1rem;
padding: 1.5rem 1rem;
}

header h1 {
font-size: 1.5rem;
}

.subtitle {
font-size: 1rem;
}

.description {
font-size: 0.85rem;
margin-top: 0.5rem;
}

.chat-messages {
padding: 1rem;
}
Expand Down