diff --git a/app/__init__.py b/app/__init__.py index b7b7140..3cd4c4d 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -33,5 +33,6 @@ def create_app(config_class=Config): app.register_blueprint(users_bp, url_prefix="/users") from app.pets import bp as pets_bp app.register_blueprint(pets_bp, url_prefix="/pets") - + from app.us import bp as us_bp + app.register_blueprint(us_bp, url_prefix="/us") return app \ No newline at end of file diff --git a/app/static/css/about-us.css b/app/static/css/about-us.css new file mode 100644 index 0000000..c926c77 --- /dev/null +++ b/app/static/css/about-us.css @@ -0,0 +1,6 @@ +.about-us { + background-image: url('/static/img/animals-bg.jpg'); + background-size: cover; + background-position: center; + background-repeat: no-repeat; +} \ No newline at end of file diff --git a/app/static/css/contact-us.css b/app/static/css/contact-us.css new file mode 100644 index 0000000..e45067c --- /dev/null +++ b/app/static/css/contact-us.css @@ -0,0 +1,3 @@ +.contact-us { + max-width: var(--main-content-max-width, 480px); +} \ No newline at end of file diff --git a/app/static/img/animals-bg.jpg b/app/static/img/animals-bg.jpg new file mode 100644 index 0000000..d113c7e Binary files /dev/null and b/app/static/img/animals-bg.jpg differ diff --git a/app/templates/layout/layout.html b/app/templates/layout/layout.html index 888d234..059ebea 100644 --- a/app/templates/layout/layout.html +++ b/app/templates/layout/layout.html @@ -50,7 +50,8 @@