Skip to content

Commit

Permalink
Merge pull request #142 from ParnaRoyChowdhury777/main
Browse files Browse the repository at this point in the history
Issue#132 fixed. Added Terms and Conditions Page
  • Loading branch information
Abidsyed25 authored Jul 6, 2024
2 parents 7768da4 + eac7f61 commit 2f8a6d6
Show file tree
Hide file tree
Showing 3 changed files with 342 additions and 79 deletions.
197 changes: 197 additions & 0 deletions app/termsconditions/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,197 @@
import { Nav } from "@/components/Nav";
import React from "react";

const TermsAndConditions = () => {
return (
<>
<Nav />
<div className="bg-[#FDFFE1] min-h-screen p-8">
<div className="max-w-4xl mx-auto bg-[#cfd0b9] p-8 shadow-md rounded-md">
<h1 className="text-3xl font-bold mb-6 text-center">
Terms and Conditions
</h1>

<section className="mb-6">
<h2 className="text-2xl font-semibold mb-4">Introduction</h2>
<p className="text-gray-700">
Welcome to ScrapQuest! These Terms and Conditions outline the
rules and regulations for the use of ScrapQuest website and
services. By accessing and using our website, you accept and agree
to comply with these terms. If you do not agree with any part of
these terms, you should not use our website or services.
</p>
</section>

<section className="mb-6">
<h2 className="text-2xl font-semibold mb-4">Definitions</h2>
<ul className="list-disc list-inside text-gray-700">
<li>
<strong>&quot;Service&quot;</strong> refers to the web scraping
services provided by ScrapQuest.
</li>
<li>
<strong>&quot;We,&quot; &quot;Us,&quot; &quot;Our&quot;</strong>{" "}
refers to ScrapQuest.
</li>
<li>
<strong>&quot;You,&quot; &quot;Your&quot;</strong> refers to the
user or customer of our website and services.
</li>
</ul>
</section>

<section className="mb-6">
<h2 className="text-2xl font-semibold mb-4">Use of Service</h2>
<h3 className="text-xl font-semibold mb-2">Eligibility</h3>
<p className="text-gray-700">
You must be at least 18 years old to use our services. By using
our services, you represent and warrant that you are at least 18
years old and have the legal capacity to enter into these Terms
and Conditions.
</p>

<h3 className="text-xl font-semibold mt-4 mb-2">
Account Registration
</h3>
<p className="text-gray-700">
To access certain features of our services, you may need to create
an account. You agree to provide accurate and complete information
when creating your account and to update this information as
necessary. You are responsible for maintaining the confidentiality
of your account credentials and for all activities that occur
under your account.
</p>

<h3 className="text-xl font-semibold mt-4 mb-2">
Prohibited Activities
</h3>
<p className="text-gray-700">
When using our services, you agree not to:
</p>
<ul className="list-disc list-inside text-gray-700">
<li>Use our services for any illegal or unauthorized purpose.</li>
<li>
Attempt to gain unauthorized access to our systems or networks.
</li>
<li>
Use our services to scrape websites that you do not have
permission to scrape.
</li>
<li>
Interfere with or disrupt the integrity or performance of our
services.
</li>
</ul>
</section>

<section className="mb-6">
<h2 className="text-2xl font-semibold mb-4">
Intellectual Property
</h2>
<p className="text-gray-700">
All content, trademarks, logos, and intellectual property
displayed on our website are the property of ScrapQuest or its
licensors. You may not use, reproduce, distribute, or create
derivative works from any content without our prior written
consent.
</p>
</section>

<section className="mb-6">
<h2 className="text-2xl font-semibold mb-4">Data Privacy</h2>
<p className="text-gray-700">
We value your privacy and are committed to protecting your
personal information. Please review our{" "}
<a href="#" className="text-blue-500">
Privacy Policy
</a>{" "}
to understand how we collect, use, and protect your data.
</p>
</section>

<section className="mb-6">
<h2 className="text-2xl font-semibold mb-4">
Limitation of Liability
</h2>
<p className="text-gray-700">
To the fullest extent permitted by law, ScrapQuest shall not be
liable for any indirect, incidental, special, consequential, or
punitive damages, or any loss of profits or revenues, whether
incurred directly or indirectly, or any loss of data, use,
goodwill, or other intangible losses resulting from:
</p>
<ul className="list-disc list-inside text-gray-700">
<li>Your use or inability to use our services.</li>
<li>
Any unauthorized access to or use of our servers and/or any
personal information stored therein.
</li>
<li>
Any interruption or cessation of transmission to or from our
services.
</li>
</ul>
</section>

<section className="mb-6">
<h2 className="text-2xl font-semibold mb-4">Indemnification</h2>
<p className="text-gray-700">
You agree to indemnify and hold harmless ScrapQuest, its
affiliates, officers, agents, and employees, from any claim or
demand, including reasonable attorneys&quot; fees, made by any
third party due to or arising out of your use of our services,
your violation of these terms, or your violation of any rights of
another.
</p>
</section>

<section className="mb-6">
<h2 className="text-2xl font-semibold mb-4">
Modifications to the Service and Terms
</h2>
<p className="text-gray-700">
We reserve the right to modify or discontinue our services at any
time, with or without notice. We also reserve the right to modify
these Terms and Conditions at any time. Your continued use of our
services after any such changes constitutes your acceptance of the
new terms.
</p>
</section>

<section className="mb-6">
<h2 className="text-2xl font-semibold mb-4">Governing Law</h2>
<p className="text-gray-700">
These Terms and Conditions are governed by and construed in
accordance with the laws of the jurisdiction in which ScrapQuest
operates, without regard to its conflict of law principles.
</p>
</section>

<section className="mb-6">
<h2 className="text-2xl font-semibold mb-4">Contact Us</h2>
<p className="text-gray-700">
If you have any questions or concerns about these Terms and
Conditions, please contact us:
</p>
<p className="text-gray-700">
Email:{" "}
<a href="mailto:support@scrapquest.com" className="text-blue-500">
support@scrapquest.com
</a>
<br />
Phone: +1 234 567 89
</p>
</section>

<p className="text-gray-700">
By using our website and services, you acknowledge that you have
read, understood, and agree to be bound by these Terms and
Conditions.
</p>
</div>
</div>
</>
);
};

export default TermsAndConditions;
52 changes: 42 additions & 10 deletions components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
import React from 'react';
import Link from 'next/link';
import { FaHome, FaInfoCircle, FaEnvelope, FaGithub, FaQuestionCircle, FaSignInAlt, FaFacebookF, FaTwitter, FaGoogle, FaLinkedinIn } from 'react-icons/fa';
import '@fortawesome/fontawesome-free/css/all.min.css';
import React from "react";
import Link from "next/link";
import {
FaHome,
FaInfoCircle,
FaEnvelope,
FaGithub,
FaQuestionCircle,
FaSignInAlt,
FaFacebookF,
FaTwitter,
FaGoogle,
FaLinkedinIn,
FaPenSquare,
} from "react-icons/fa";
import "@fortawesome/fontawesome-free/css/all.min.css";

export default function Footer() {
return (
Expand Down Expand Up @@ -42,6 +54,12 @@ export default function Footer() {
FAQ
</a>
</Link>
<Link href="/termsconditions" legacyBehavior>
<a className="hover:text-blue-400 flex items-center">
<FaPenSquare className="w-4 h-4 mr-2" />
Terms & Conditions
</a>
</Link>
<Link href="/login" legacyBehavior>
<a className="hover:text-blue-400 flex items-center">
<FaSignInAlt className="w-4 h-4 mr-2" />
Expand All @@ -50,25 +68,39 @@ export default function Footer() {
</Link>
</div>
<div className="mt-4">
<p className="social-text" style={{ color: 'turquoise' }}>
<p className="social-text" style={{ color: "turquoise" }}>
Discover more about ScrapQuest and stay updated!
</p>
<div className="social-media flex justify-center mt-2">
<a href="https://www.facebook.com" className="social-icon mx-2 hover:text-blue-400">
<a
href="https://www.facebook.com"
className="social-icon mx-2 hover:text-blue-400"
>
<FaFacebookF className="w-5 h-5" />
</a>
<a href="https://www.twitter.com" className="social-icon mx-2 hover:text-blue-400">
<a
href="https://www.twitter.com"
className="social-icon mx-2 hover:text-blue-400"
>
<FaTwitter className="w-5 h-5" />
</a>
<a href="https://www.gmail.com" className="social-icon mx-2 hover:text-blue-400">
<a
href="https://www.gmail.com"
className="social-icon mx-2 hover:text-blue-400"
>
<FaGoogle className="w-5 h-5" />
</a>
<a href="https://www.linkedin.com" className="social-icon mx-2 hover:text-blue-400">
<a
href="https://www.linkedin.com"
className="social-icon mx-2 hover:text-blue-400"
>
<FaLinkedinIn className="w-5 h-5" />
</a>
</div>
</div>
<h1 className="mt-4">Copyright © 2024, ScrapQuest. All Rights Reserved.</h1>
<h1 className="mt-4">
Copyright © 2024, ScrapQuest. All Rights Reserved.
</h1>
</div>
</div>
);
Expand Down
Loading

0 comments on commit 2f8a6d6

Please sign in to comment.