Skip to content

Commit

Permalink
landing page changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ananya173147 committed Oct 16, 2023
1 parent cb8f2cf commit 344613d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/recommenderapp/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import json
import sys

from flask import Flask, jsonify, render_template, request
from flask import Flask, jsonify, render_template, request, redirect, url_for
from flask_cors import CORS
from search import Search
from utils import beautify_feedback_data, send_email_to_user
Expand All @@ -27,7 +27,7 @@ def landing_page():
"""
Renders the landing page.
"""
return render_template("search_page.html")
return render_template("landing_page.html")


@app.route("/get_started", methods=["POST"])
Expand Down
Binary file added src/recommenderapp/static/image.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions src/recommenderapp/static/stylesheet.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
.landing-page {
background-image: url("image.jpg");
background-size: cover;
color: azure !important;
}


body {
background-image: url("224299.jpg");
background-size: cover;
Expand Down

0 comments on commit 344613d

Please sign in to comment.