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
Binary file modified Assets/Landing-page-dark_mode.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Assets/Landing_page_light-mode.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified Assets/Working.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion backend/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

app = FastAPI(
title=settings.app_name,
description="API for managing live doubt sessions with YouTube integration",
description="API for real-time YouTube teaching sessions with AI-powered Q&A",
version=settings.app_version,
debug=settings.debug,
)
Expand Down
4 changes: 2 additions & 2 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "ai-live-doubt-manager",
"name": "streammind",
"private": true,
"version": "0.0.0",
"type": "module",
Expand Down
18 changes: 8 additions & 10 deletions frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -208,12 +208,11 @@ body {
}

.header-wordmark {
font-family: var(--font-display);
font-size: 11px;
font-family: 'Syne', sans-serif;
font-size: 14px;
font-weight: 700;
letter-spacing: 0.1em;
letter-spacing: 0.02em;
color: var(--color-accent);
text-transform: uppercase;
white-space: nowrap;
flex-shrink: 0;
}
Expand Down Expand Up @@ -290,12 +289,11 @@ body {

/* Logo alias for landing page */
.logo {
font-family: var(--font-display);
font-family: 'Syne', sans-serif;
font-weight: 700;
font-size: 12px;
font-size: 14px;
color: var(--color-accent);
letter-spacing: 0.08em;
text-transform: uppercase;
letter-spacing: 0.02em;
}

/* ============================================================
Expand Down Expand Up @@ -1207,8 +1205,8 @@ button:disabled { opacity: 0.4; pointer-events: none; }
.landing-hero > * { position: relative; z-index: 1; }

.landing-hero h1 {
font-family: 'Bebas Neue', sans-serif; font-size: 72px; font-weight: 400;
color: var(--color-accent); margin-bottom: 20px; letter-spacing: 0.03em;
font-family: 'Syne', sans-serif; font-size: 72px; font-weight: 800;
color: var(--color-accent); margin-bottom: 20px; letter-spacing: -0.02em;
line-height: 1;
}
.landing-hero .tagline {
Expand Down
Loading