33 lines
1.7 KiB
TypeScript
33 lines
1.7 KiB
TypeScript
"use client";
|
|
import { Container } from "@/components/container";
|
|
import { Heading } from "@/components/heading";
|
|
import { Footer } from "@/components/footer";
|
|
|
|
export default function TermsPage() {
|
|
return (
|
|
<main className="min-h-screen bg-white">
|
|
<Container className="py-20">
|
|
<div className="max-w-3xl mx-auto">
|
|
<Heading className="mb-8">Terms of Service</Heading>
|
|
<div className="prose prose-neutral">
|
|
<p className="text-neutral-600 mb-6">Welcome to BharatStore. By using our website, you agree to the following terms.</p>
|
|
|
|
<h3 className="text-xl font-bold mb-4">1. Use of Website</h3>
|
|
<p className="mb-6">You must be at least 18 years old to use this site or have parental consent. You agree to provide accurate information during checkout.</p>
|
|
|
|
<h3 className="text-xl font-bold mb-4">2. Pricing and Availability</h3>
|
|
<p className="mb-6">All prices are in Indian Rupees (INR). We reserve the right to change prices or cancel orders due to errors in pricing or stock availability.</p>
|
|
|
|
<h3 className="text-xl font-bold mb-4">3. Intellectual Property</h3>
|
|
<p className="mb-6">All content on this site, including logos, text, and images, is the property of BharatStore and protected by copyright laws.</p>
|
|
|
|
<h3 className="text-xl font-bold mb-4">4. Limitation of Liability</h3>
|
|
<p className="mb-6">BharatStore shall not be liable for any indirect or consequential damages arising from the use of our products or website.</p>
|
|
</div>
|
|
</div>
|
|
</Container>
|
|
<Footer />
|
|
</main>
|
|
);
|
|
}
|