From bd5ac5f75b4f2a0de8a67fbd08f282c6438291e0 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Sun, 18 Jan 2026 18:29:53 +0000 Subject: [PATCH] Update app/terms/page.tsx --- app/terms/page.tsx | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 app/terms/page.tsx diff --git a/app/terms/page.tsx b/app/terms/page.tsx new file mode 100644 index 0000000..cf514be --- /dev/null +++ b/app/terms/page.tsx @@ -0,0 +1,32 @@ +"use client"; +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Footer } from "@/components/footer"; + +export default function TermsPage() { + return ( +
+ +
+ Terms of Service +
+

Welcome to BharatStore. By using our website, you agree to the following terms.

+ +

1. Use of Website

+

You must be at least 18 years old to use this site or have parental consent. You agree to provide accurate information during checkout.

+ +

2. Pricing and Availability

+

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.

+ +

3. Intellectual Property

+

All content on this site, including logos, text, and images, is the property of BharatStore and protected by copyright laws.

+ +

4. Limitation of Liability

+

BharatStore shall not be liable for any indirect or consequential damages arising from the use of our products or website.

+
+
+
+
+ ); +}