Upload Next.js project

This commit is contained in:
2026-04-27 15:32:30 +05:30
parent a09a9d120b
commit 5a68ef59f9
247 changed files with 6133 additions and 97 deletions
+112
View File
@@ -0,0 +1,112 @@
export default function TermsPage() {
return (
<div>
<>
<section
className="hero-remodel-section ourprocesswraptop"
style={{ backgroundImage: "url(./assets/images/aboutback.png)" }}
>
<div className="container">
<div className="row align-items-end">
<div className="col-lg-6">
<div className="hero-remodel-content">
<span className="hero-remodel-subtitle">Terms of Service</span>
<h1 className="hero-remodel-title">Terms &amp; Conditions</h1>
<p className="hero-remodel-text">
Please read these terms carefully before using our services.
</p>
</div>
</div>
</div>
</div>
</section>
<section className="process-sectionbottom">
<div className="container privacycontent">
<h2 className="mb-4">Terms of Service</h2>
<p>
Welcome to HouseCoin. By accessing or using our website and services,
you agree to follow the terms and conditions outlined below. These terms
are designed to ensure a smooth and transparent experience for both our
clients and our team. We recommend reviewing them carefully before
starting any project with us.
</p>
<h5 className="mt-4">1. Use of Services</h5>
<p>
Our services are intended strictly for lawful and professional use. You
agree not to misuse, copy, distribute, or exploit any part of our
website, content, or services without prior written permission. Any
unauthorized activity may lead to suspension of services and necessary
legal action.
</p>
<h5 className="mt-4">2. Service Agreement</h5>
<p>
Every project is executed based on a clear agreement that defines the
scope, deliverables, timeline, and pricing. This helps avoid
misunderstandings and ensures transparency. Any modifications or
additional requests must be discussed and approved by both parties in
advance.
</p>
<h5 className="mt-4">3. Pricing &amp; Payments</h5>
<p>
We maintain complete transparency in pricing and provide detailed cost
estimates before starting the project. Payments are expected as per the
agreed milestones. Delayed payments may affect project progress and can
lead to temporary suspension of services until cleared.
</p>
<h5 className="mt-4">4. Project Timelines</h5>
<p>
We always strive to deliver projects within the agreed timeline while
maintaining quality standards. However, delays may occur due to factors
like material availability, unforeseen circumstances, or
client-requested changes during the project. We keep clients informed
throughout the process.
</p>
<h5 className="mt-4">5. Client Responsibilities</h5>
<p>
Clients are expected to provide accurate information, timely approvals,
and necessary access required for project completion. Clear
communication and cooperation from the client side play a crucial role
in meeting deadlines and ensuring successful project delivery.
</p>
<h5 className="mt-4">6. Intellectual Property</h5>
<p>
All designs, plans, concepts, and content developed by HouseCoin remain
our intellectual property unless otherwise agreed in writing. Clients
are not permitted to reuse, reproduce, or distribute these materials
without proper authorization.
</p>
<h5 className="mt-4">7. Limitation of Liability</h5>
<p>
While we aim to deliver high-quality services, HouseCoin shall not be
held responsible for any indirect, incidental, or consequential damages.
This includes losses related to delays, business interruptions, or
unforeseen issues beyond our control.
</p>
<h5 className="mt-4">8. Cancellation &amp; Refund</h5>
<p>
Cancellation requests must be made formally and will be evaluated based
on the stage of the project. Any applicable refund will be calculated
based on the work completed and expenses already incurred up to that
point.
</p>
<h5 className="mt-4">9. Changes to Terms</h5>
<p>
We reserve the right to update or modify these terms at any time to
reflect changes in our services or policies. Continued use of our
website or services after such updates indicates your acceptance of the
revised terms.
</p>
<h5 className="mt-4">10. Contact</h5>
<p>
If you have any questions, concerns, or require further clarification
regarding these Terms of Service, feel free to reach out to us. You can
contact us at <strong>reimagine@housecoin.biz</strong> and our team will
be happy to assist you.
</p>
</div>
</section>
</>
</div>
);
}