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
2 changes: 1 addition & 1 deletion api/static/css/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}

.logo {
height: 40px;
height: 60px;
width: auto;
}

Expand Down
Binary file added api/static/public/icons/queryweaver.webp
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 api/templates/chat.j2
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% extends "base.j2" %}

{% block title %}Text-to-SQL Chat Interface{% endblock %}
{% block title %}QueryWeaver Chat Interface{% endblock %}

{% block toolbar %}
{% include 'components/toolbar.j2' %}
Expand Down
40 changes: 0 additions & 40 deletions api/templates/chat_new.j2

This file was deleted.

4 changes: 2 additions & 2 deletions api/templates/components/chat_header.j2
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{# Chat header with logo, title, and action buttons #}
<div class="chat-header">
<img src="{{ url_for('static', filename='public/icons/logo.svg') }}" alt="Chat Logo" class="logo">
<h1> Text-to-SQL(Natural Language to SQL Generator)</h1>
<img src="{{ url_for('static', filename='public/icons/queryweaver.webp') }}" alt="Chat Logo" class="logo">
<h1>Natural Language to SQL Generator</h1>
<div class="button-container">
<select title="Select Database" id="graph-select">
<option value="">Loading...</option>
Expand Down
2 changes: 1 addition & 1 deletion api/templates/components/login_modal.j2
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{# Login modal for authentication #}
<div id="google-login-modal" class="google-login-modal">
<div class="google-login-modal-content">
<h2>Welcome to Text-to-SQL</h2>
<h2>Welcome to QueryWeaver</h2>
<p>Please login to continue</p>
<a href="{{ url_for('google.login') }}" class="google-login-btn">
<img src="{{ url_for('static', filename='public/icons/google.svg') }}" alt="Google logo" class="google-login-logo">Sign in with Google
Expand Down
Loading