From f6ac350a09a886880fd06a6f4a66755d0b91c156 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sat, 27 Sep 2025 20:20:32 +0000 Subject: [PATCH] Add Privacy Policy page cgen-4812659abfe74f889cfa79452b6ad87b --- client/pages/Privacy.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 client/pages/Privacy.tsx diff --git a/client/pages/Privacy.tsx b/client/pages/Privacy.tsx new file mode 100644 index 00000000..9bc3713e --- /dev/null +++ b/client/pages/Privacy.tsx @@ -0,0 +1,22 @@ +import Layout from "@/components/Layout"; + +export default function Privacy() { + return ( + +
+
+

Privacy Policy

+

We respect your privacy. This page outlines how we collect, use, and protect your data.

+
+

Data We Collect

+

Account details, usage analytics, and content you provide.

+

How We Use Data

+

To provide services, improve features, and ensure security.

+

Your Choices

+

You can update or delete your profile and opt-out of marketing.

+
+
+
+
+ ); +}