From 57522fcaac3668592aaec8dfc08f09f556416015 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 20:05:03 +0000 Subject: [PATCH] Add src/app/terms/page.tsx --- src/app/terms/page.tsx | 127 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 127 insertions(+) create mode 100644 src/app/terms/page.tsx diff --git a/src/app/terms/page.tsx b/src/app/terms/page.tsx new file mode 100644 index 0000000..e3e6e45 --- /dev/null +++ b/src/app/terms/page.tsx @@ -0,0 +1,127 @@ +"use client"; + +import { useEffect, useState } from "react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; + +export default function TermsPage() { + const [isClient, setIsClient] = useState(false); + + useEffect(() => { + setIsClient(true); + }, []); + + if (!isClient) { + return null; + } + + return ( + + + +
+
+

Terms of Service

+

Last updated: January 2025

+ +
+
+

1. Acceptance of Terms

+

By accessing and using the ParkSpot mobile application ("Service"), you accept and agree to be bound by the terms and provision of this agreement. If you do not agree to abide by the above, please do not use this service.

+
+ +
+

2. Use License

+

Permission is granted to temporarily download one copy of the materials (information or software) on ParkSpot's Service for personal, non-commercial transitory viewing only. This is the grant of a license, not a transfer of title, and under this license you may not:

+
    +
  • Modifying or copying the materials
  • +
  • Using the materials for any commercial purpose or for any public display
  • +
  • Attempting to decompile or reverse engineer any software contained on the Service
  • +
  • Removing any copyright or other proprietary notations from the materials
  • +
  • Transferring the materials to another person or "mirroring" the materials on any other server
  • +
+
+ +
+

3. User Accounts

+

When you create an account on our Service, you must provide information that is accurate, complete, and current at all times. You are responsible for safeguarding the password and for all activities that occur under your account.

+
+ +
+

4. Limitation of Liability

+

In no event shall ParkSpot or its suppliers be liable for any damages (including, without limitation, damages for loss of data or profit, or due to business interruption) arising out of the use or inability to use the materials on ParkSpot's Service.

+
+ +
+

5. Accuracy of Materials

+

The materials appearing on ParkSpot's Service could include technical, typographical, or photographic errors. ParkSpot does not warrant that any of the materials on the Service are accurate, complete, or current.

+
+ +
+

6. Modifications

+

ParkSpot may revise these terms of service for the Service at any time without notice. By using this Service, you are agreeing to be bound by the then current version of these terms of service.

+
+ +
+

7. Data Persistence and Storage

+

ParkSpot uses browser-based data persistence to store your parking locations, photos, notes, and arrival times. You understand and agree that:

+
    +
  • Your data is stored locally on your device and synced to secure cloud servers
  • +
  • You are responsible for maintaining backups of your data
  • +
  • We implement reasonable security measures to protect your data
  • +
  • Data retention and deletion policies are outlined in our Privacy Policy
  • +
+
+ +
+

8. Location Services

+

ParkSpot collects and uses GPS location data to provide parking tracking services. You consent to the collection and use of location data as described in our Privacy Policy.

+
+ +
+

9. Contact Information

+

If you have any questions about these Terms of Service, please contact us at support@parkspot.app

+
+
+
+
+ +
+ +
+
+ ); +}