app-tiny-falcon-drift/app/terms/page.tsx

120 lines
5.6 KiB
TypeScript

import { Container } from "@/components/container";
import { Heading } from "@/components/heading";
import { Footer } from "@/components/footer";
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Terms of Service - Badnaam Safar",
description: "Terms of service for using Badnaam Safar travel consultation services.",
};
export default function TermsPage() {
return (
<main className="min-h-screen">
<section className="py-20 md:py-32 bg-gradient-to-b from-neutral-50 to-white">
<Container>
<div className="max-w-3xl mx-auto">
<Heading className="text-4xl md:text-5xl font-bold text-neutral-900 mb-8">
Terms of Service
</Heading>
<div className="prose prose-lg max-w-none space-y-6">
<p className="text-neutral-600">
Last updated: {new Date().toLocaleDateString('en-IN', { year: 'numeric', month: 'long', day: 'numeric' })}
</p>
<div className="bg-white border border-neutral-200 rounded-lg p-6">
<h2 className="text-2xl font-bold text-neutral-900 mb-4">
Acceptance of Terms
</h2>
<p className="text-neutral-700">
By using Badnaam Safar's consultation services, you agree to these terms of service. If you do not agree, please do not use our services.
</p>
</div>
<div className="bg-white border border-neutral-200 rounded-lg p-6">
<h2 className="text-2xl font-bold text-neutral-900 mb-4">
Service Description
</h2>
<p className="text-neutral-700">
Badnaam Safar provides free travel consultation services. We are an independent consultant and do not operate tours, manage bookings, or collect payments. All travel services are provided by third-party agencies.
</p>
</div>
<div className="bg-white border border-neutral-200 rounded-lg p-6">
<h2 className="text-2xl font-bold text-neutral-900 mb-4">
User Responsibilities
</h2>
<p className="text-neutral-700 mb-3">
You agree to:
</p>
<ul className="list-disc list-inside text-neutral-700 space-y-2">
<li>Provide accurate information during consultation</li>
<li>Verify all details with travel agencies before booking</li>
<li>Read and understand agency terms and conditions</li>
<li>Make informed decisions about your travel plans</li>
</ul>
</div>
<div className="bg-white border border-neutral-200 rounded-lg p-6">
<h2 className="text-2xl font-bold text-neutral-900 mb-4">
Limitation of Liability
</h2>
<p className="text-neutral-700">
Badnaam Safar is not responsible for the services provided by third-party travel agencies. We are not liable for any issues, disputes, or damages arising from your dealings with these agencies.
</p>
</div>
<div className="bg-white border border-neutral-200 rounded-lg p-6">
<h2 className="text-2xl font-bold text-neutral-900 mb-4">
No Guarantees
</h2>
<p className="text-neutral-700">
While we strive to provide accurate and helpful advice, we do not guarantee the quality, availability, or pricing of services offered by third-party agencies.
</p>
</div>
<div className="bg-white border border-neutral-200 rounded-lg p-6">
<h2 className="text-2xl font-bold text-neutral-900 mb-4">
Intellectual Property
</h2>
<p className="text-neutral-700">
All content on this website, including text, graphics, and logos, is the property of Badnaam Safar and protected by copyright laws.
</p>
</div>
<div className="bg-white border border-neutral-200 rounded-lg p-6">
<h2 className="text-2xl font-bold text-neutral-900 mb-4">
Changes to Terms
</h2>
<p className="text-neutral-700">
We reserve the right to modify these terms at any time. Continued use of our services after changes constitutes acceptance of the new terms.
</p>
</div>
<div className="bg-white border border-neutral-200 rounded-lg p-6">
<h2 className="text-2xl font-bold text-neutral-900 mb-4">
Governing Law
</h2>
<p className="text-neutral-700">
These terms are governed by the laws of India. Any disputes shall be subject to the exclusive jurisdiction of courts in India.
</p>
</div>
<div className="bg-white border border-neutral-200 rounded-lg p-6">
<h2 className="text-2xl font-bold text-neutral-900 mb-4">
Contact Information
</h2>
<p className="text-neutral-700">
For questions about these terms, please contact us via WhatsApp or email.
</p>
</div>
</div>
</div>
</Container>
</section>
<Footer />
</main>
);
}