From efebcf43b8f2e24bc13baa6b0bfac4d681ab017e Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 19:49:40 +0000 Subject: [PATCH] Add src/app/privacy/page.tsx --- src/app/privacy/page.tsx | 56 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 src/app/privacy/page.tsx diff --git a/src/app/privacy/page.tsx b/src/app/privacy/page.tsx new file mode 100644 index 0000000..78047ea --- /dev/null +++ b/src/app/privacy/page.tsx @@ -0,0 +1,56 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; + +const testCarImages = [ + 'https://images.unsplash.com/photo-1552519507-da3a142c6e3d?w=800&q=80', + 'https://images.unsplash.com/photo-1494976866105-d32a481b81b4?w=800&q=80', + 'https://images.unsplash.com/photo-1527524330007-3ea4e06ed667?w=800&q=80', +]; + +export default function PrivacyPage() { + return ( + + + +
+
+

Privacy Policy

+

Last updated: January 2025

+
+
+

1. Information We Collect

+

We collect information you provide directly to us when using our car database and comparison tools.

+
+
+

2. How We Use Your Information

+

We use the information we collect to provide, maintain, and improve our services.

+
+
+
+
+
+ ); +}