diff --git a/app.py b/app.py index 33380a9..6132f6e 100644 --- a/app.py +++ b/app.py @@ -89,6 +89,11 @@ def about(): def contact(): return render_template('contact.html') +@app.route("/disclaimer") +def disclaimer(): + return render_template("disclaimer.html") + + def index(): diff --git a/static/images/disclaimer-illustration.jpg b/static/images/disclaimer-illustration.jpg new file mode 100644 index 0000000..4ae50a7 Binary files /dev/null and b/static/images/disclaimer-illustration.jpg differ diff --git a/static/style.css b/static/style.css index c1a5915..c637089 100644 --- a/static/style.css +++ b/static/style.css @@ -1692,3 +1692,54 @@ body.dark .about-card { .privacy-container h3 { color: #6c5ce7; /* purple tone consistent with site theme */ } + +/* ================================ + Disclaimer Page Styling +================================ */ +.disclaimer-container { + max-width: 800px; + margin: 4rem auto; + padding: 2rem; + background: var(--card-light); + border-radius: 1rem; + box-shadow: var(--shadow-light); + line-height: 1.7; +} + +body.dark .disclaimer-container { + background: var(--card-dark); + box-shadow: var(--shadow-dark); +} + +.disclaimer-container h1 { + font-size: 2rem; + font-weight: 800; + color: #6c5ce7; /* purple to match Quick Fact Checker title */ + margin-bottom: 1.5rem; + text-align: center; +} + +.disclaimer-container h2 { + color: #6c5ce7; + margin-top: 1.5rem; +} + +.disclaimer-container p { + color: var(--text-secondary-light); + margin: 0.75rem 0; +} + +body.dark .disclaimer-container p { + color: var(--text-secondary-dark); +} + +.disclaimer-hero { + text-align: center; + margin-bottom: 2rem; +} + +.disclaimer-hero img { + max-width: 300px; + height: auto; + opacity: 0.9; +} diff --git a/templates/about.html b/templates/about.html index dba2e13..1503370 100644 --- a/templates/about.html +++ b/templates/about.html @@ -155,7 +155,7 @@ diff --git a/templates/contact.html b/templates/contact.html index 71f82a9..1bfa550 100644 --- a/templates/contact.html +++ b/templates/contact.html @@ -154,7 +154,7 @@ diff --git a/templates/dashboard.html b/templates/dashboard.html index 271a327..3c24cb5 100644 --- a/templates/dashboard.html +++ b/templates/dashboard.html @@ -165,7 +165,7 @@ diff --git a/templates/disclaimer.html b/templates/disclaimer.html new file mode 100644 index 0000000..ecbe381 --- /dev/null +++ b/templates/disclaimer.html @@ -0,0 +1,195 @@ + + + + + + + Disclaimer | Quick Fact Checker + + + + + + + + +
+ +
+

Disclaimer

+
+ Disclaimer Illustration +
+ + + + +

The information provided by Quick Fact Checker is for general informational purposes only. All information on this site is provided in good faith; however, we make no representation or warranty of any kind regarding the accuracy, adequacy, validity, reliability, or completeness of any information.

+ +

External Links Disclaimer

+

Our website may contain links to other websites or content belonging to third parties. Such external links are not investigated, monitored, or checked for accuracy by us. We do not warrant or endorse any information found on external sites.

+ +

Professional Disclaimer

+

The information provided by Quick Fact Checker should not be considered professional or expert advice. Always verify information through multiple reliable sources before making decisions based on it.

+ +

Fair Use Disclaimer

+

Some content on this site may include copyrighted material used under fair use for educational and informational purposes. If you believe any material infringes your copyright, please contact us for removal.

+ +

By using this site, you agree that Quick Fact Checker and its creators are not liable for any damages arising from your use of the information provided.

+
+ + + + + + + + + + + + + + diff --git a/templates/index.html b/templates/index.html index 6b58cdd..ec9f7bb 100644 --- a/templates/index.html +++ b/templates/index.html @@ -378,7 +378,7 @@ diff --git a/templates/privacy.html b/templates/privacy.html index c46cf85..4933d38 100644 --- a/templates/privacy.html +++ b/templates/privacy.html @@ -174,7 +174,7 @@