Merge pull request 'Refactoring' (#38) from refactoring into main
This commit is contained in:
commit
27e4d10b78
5 changed files with 2 additions and 21 deletions
|
@ -139,14 +139,5 @@ def get_current_time():
|
||||||
|
|
||||||
|
|
||||||
# Run the example
|
# Run the example
|
||||||
if __name__ == '__main__':
|
|
||||||
app.run(host='0.0.0.0', port=5000)
|
|
||||||
import time
|
|
||||||
from flask import Flask
|
|
||||||
import flask_sqlalchemy
|
|
||||||
import flask_praetorian
|
|
||||||
import flask_cors
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
app.run(debug=debug, host=host, port=port)
|
app.run(debug=debug, host=host, port=port)
|
||||||
|
|
|
@ -28,15 +28,6 @@
|
||||||
font-size: 100px;
|
font-size: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sign-up {
|
|
||||||
background-image: url("images/img-9.jpg");
|
|
||||||
background-position: center;
|
|
||||||
background-size: cover;
|
|
||||||
background-repeat: no-repeat;
|
|
||||||
color: var(--primary);
|
|
||||||
font-size: 100px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sitePage {
|
.sitePage {
|
||||||
height: 90vh;
|
height: 90vh;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
|
@ -2,7 +2,6 @@ import React from "react";
|
||||||
import "../../App.css";
|
import "../../App.css";
|
||||||
import HeroSection from "../HeroSection";
|
import HeroSection from "../HeroSection";
|
||||||
import Footer from "../../Footer";
|
import Footer from "../../Footer";
|
||||||
import { useEffect } from "react/cjs/react.development";
|
|
||||||
|
|
||||||
function Home() {
|
function Home() {
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -5,7 +5,7 @@ import Footer from "../../Footer";
|
||||||
export default function SignUp() {
|
export default function SignUp() {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<h1 className="sign-up">Privacy</h1>
|
<h1>Privacy</h1>
|
||||||
<Footer />
|
<Footer />
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue