Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -103,7 +103,7 @@ async def websocket_endpoint(websocket: WebSocket, endpoint: str):
|
|
103 |
# Existing routes remain the same as in the previous implementation
|
104 |
@app.get("/", response_class=HTMLResponse)
|
105 |
async def home(request: Request):
|
106 |
-
return templates.TemplateResponse("index.html", {
|
107 |
"request": request,
|
108 |
"title": "Mathematical Insight Tutor"
|
109 |
})
|
|
|
103 |
# Existing routes remain the same as in the previous implementation
|
104 |
@app.get("/", response_class=HTMLResponse)
|
105 |
async def home(request: Request):
|
106 |
+
return templates.TemplateResponse("/static/index.html", {
|
107 |
"request": request,
|
108 |
"title": "Mathematical Insight Tutor"
|
109 |
})
|