From 343b60770f6025bcc8562f3475d19d9d224bd683 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 27 Sep 2025 20:20:39 +0000 Subject: [PATCH] Add Terms of Service page cgen-a04282b3fa1946448990006de30c399c --- client/pages/Terms.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 client/pages/Terms.tsx diff --git a/client/pages/Terms.tsx b/client/pages/Terms.tsx new file mode 100644 index 00000000..53536bb4 --- /dev/null +++ b/client/pages/Terms.tsx @@ -0,0 +1,22 @@ +import Layout from "@/components/Layout"; + +export default function Terms() { + return ( + +
+
+

Terms of Service

+

By using AeThex services, you agree to the following terms.

+
+

Use of Service

+

You agree not to misuse or attempt to disrupt our services.

+

Accounts

+

Keep your credentials secure. You're responsible for activity under your account.

+

Liability

+

Services are provided as-is without warranties to the fullest extent permitted by law.

+
+
+
+
+ ); +}