From 6e37a842e5fec223552ab43df8f81285687b207c Mon Sep 17 00:00:00 2001
From: moonlightnexus <68702919+moonlightnexus@users.noreply.github.com>
Date: Thu, 21 Dec 2023 20:24:20 +0530
Subject: [PATCH] Update page.tsx
---
src/app/tnc/page.tsx | 73 +++++++++++++++++++++++---------------------
1 file changed, 39 insertions(+), 34 deletions(-)
diff --git a/src/app/tnc/page.tsx b/src/app/tnc/page.tsx
index 3726b19..b7979f8 100644
--- a/src/app/tnc/page.tsx
+++ b/src/app/tnc/page.tsx
@@ -1,34 +1,39 @@
-import React from 'react';
-
-const tnc = () => (
-
-
Terms and Conditions for TrustAuthX
-
-
Introduction
-
These Website Standard Terms and Conditions written on this webpage shall manage your use of our website, TrustAuthX accessible at trustauthx.com.
-
-
Intellectual Property Rights
-
Other than the content you own, under these Terms, TrustAuthX and/or its licensors own all the intellectual property rights and materials contained in this Website.
-
-
Restrictions
-
You are specifically restricted from all of the following:
-
- - Publishing any Website material in any other media;
- - Selling, sublicensing and/or otherwise commercializing any Website material;
- - Publicly performing and/or showing any Website material;
- - Using this Website in any way that is or may be damaging to this Website;
-
-
-
Your Content
-
In these Website Standard Terms and Conditions, Your Content shall mean any audio, video text, images or other material you choose to display on this Website.
-
-
No warranties
-
This Website is provided as is, with all faults, and TrustAuthX express no representations or warranties, of any kind related to this Website or the materials contained on this Website.
-
-
Governing Law & Jurisdiction
-
These Terms will be governed by and interpreted in accordance with the laws of the United Kingdom, and you submit to the non-exclusive jurisdiction of the courts located in London, UK for the resolution of any disputes.
-
-
-);
-
-export default tnc;
\ No newline at end of file
+const TermsAndConditions = () => {
+ return (
+
+ Terms and Conditions for TrustAuthX
+
+ Introduction
+ These Website Standard Terms and Conditions written on this webpage shall manage your use of our website, TrustAuthX accessible at trustauthx.com.
+
+
+ Intellectual Property Rights
+ Other than the content you own, under these Terms, TrustAuthX and/or its licensors own all the intellectual property rights and materials contained in this Website.
+
+
+ Restrictions
+ You are specifically restricted from all of the following:
+
+ - Publishing any Website material in any other media;
+ - Selling, sublicensing and/or otherwise commercializing any Website material;
+ - Publicly performing and/or showing any Website material;
+ - Using this Website in any way that is or may be damaging to this Website;
+
+
+
+ Your Content
+ In these Website Standard Terms and Conditions, "Your Content" shall mean any audio, video text, images or other material you choose to display on this Website.
+
+
+ No warranties
+ This Website is provided "as is," with all faults, and TrustAuthX express no representations or warranties, of any kind related to this Website or the materials contained on this Website.
+
+
+ Governing Law & Jurisdiction
+ These Terms will be governed by and interpreted in accordance with the laws of the United Kingdom, and you submit to the non-exclusive jurisdiction of the courts located in London, UK for the resolution of any disputes.
+
+
+ );
+}
+
+export default TermsAndConditions;