diff --git a/app/(account)/tos/page.tsx b/app/(account)/tos/page.tsx new file mode 100644 index 0000000..609c544 --- /dev/null +++ b/app/(account)/tos/page.tsx @@ -0,0 +1,102 @@ +import React from "react"; +import Link from "next/link"; + +export const metadata = { + title: "Terms of Service | BattlBuilder", + description: "Terms of Service and legal disclaimers for rifle assembly and part compatibility.", +}; + +export default function TermsOfService() { + const lastUpdated = "December 26, 2024"; + + return ( +
+
+

Terms of Service

+

Last Updated: {lastUpdated}

+
+ +
+ {/* 1. Acceptance */} +
+

1. Acceptance of Terms

+

+ By accessing or using Shadow GunBuilder AI (the "Site"), you agree to be bound by these Terms of Service. + This Site is intended for informational and entertainment purposes only, providing a platform to + visualize and plan AR-platform rifle builds using third-party components. +

+
+ + {/* 2. Legal Compliance */} +
+

2. Legal Compliance & Firearms Safety

+
+

+ IMPORTANT: It is your sole responsibility to ensure that any firearm configuration you assemble + complies with all applicable local, state, federal, and international laws. +

+
    +
  • Laws regarding "assault weapons," magazine capacity, barrel length (NFA regulations), and specific features vary significantly by jurisdiction.
  • +
  • The Site does not provide legal advice regarding the legality of any specific build in your area.
  • +
  • Always consult with a qualified gunsmith or legal professional before commencing a physical build.
  • +
+
+
+ + {/* 3. No Guarantee of Compatibility */} +
+

3. Compatibility Disclaimer

+

+ While we strive for accuracy, the Site is a digital simulation. Compatibility data between parts + (e.g., gas block diameters, handguard clearances, or buffer weights) is based on manufacturer + specifications which are subject to change. +

+

+ Shadow GunBuilder AI does not guarantee that parts selected in the digital builder + will fit together physically or function safely. Mechanical tolerances and manufacturer variations + may exist. +

+
+ + {/* 4. User Generated Content */} +
+

4. User Builds and the "Vault"

+

+ When you save a build to your Vault or publish it to the community, you grant us a non-exclusive + license to display and store that data. You are responsible for the content of your descriptions + and ensuring they do not violate any laws or third-party rights. +

+
+ + {/* 5. Affiliate and Pricing Disclosure */} +
+

5. Affiliate & Pricing Data

+

+ Pricing and availability data are pulled from third-party retailers. We are not responsible + for pricing errors or out-of-stock items. We may receive commissions for purchases made + through links on the Site. +

+
+ + {/* 6. Limitation of Liability */} +
+

6. Limitation of Liability

+

+ SHADOW GUNBUILDER AI AND ITS OPERATORS SHALL NOT BE LIABLE FOR ANY DAMAGES, INJURIES, OR LEGAL + CONSEQUENCES ARISING FROM THE USE OF THIS SITE OR THE PHYSICAL ASSEMBLY OF FIREARMS BASED ON + PLANS CREATED HEREIN. USE AT YOUR OWN RISK. +

+
+ +
+ + ← Return to Home + +
+
+
+ ); +}