Python 68.8%
TypeScript 18.6%
CSS 8.7%
JavaScript 3.3%
HTML 0.6%
1// -----------------------------------------------------------------------------2// Rent-Ka — Rental listings aggregator (Canada, outside Québec)3// Author: Simon-Pierre Boucher — contact@spboucher.ai4// pages/Terms.tsx: terms of use (Groupe KA platform)5// -----------------------------------------------------------------------------6import { Link } from "react-router-dom";78export default function TermsPage() {9 return (10 <div className="container legal">11 <span className="kicker">Terms of use</span>12 <h1>The rules of the game, in plain words.</h1>1314 <section>15 <h3>Who operates Rent-Ka</h3>16 <p>17 Rent-Ka is a <b>Groupe KA</b> platform{" "}18 (<a href="https://www.groupe-ka.com" target="_blank" rel="noopener noreferrer">19 groupe-ka.com20 </a>), a Québec-based group of automated aggregators. For any general21 question about the service:{" "}22 <a href="mailto:info@groupe-ka.com">info@groupe-ka.com</a>.23 </p>24 </section>2526 <section>27 <h3>Nature of the service</h3>28 <p>29 Rent-Ka is an <b>aggregator</b>: it gathers rental listings publicly30 published by property managers, brokers and listing platforms across31 Canada. Rent-Ka is neither a broker, nor a manager, nor a party to any32 lease — every listing links back to the original ad and the rental is33 concluded directly with the advertiser.34 </p>35 </section>3637 <section>38 <h3>Accuracy of information</h3>39 <p>40 Listings are synced automatically and may differ from the source41 (changed rent, unit already rented, source or extraction error).42 Information is provided <b>as an indication, without warranty</b> —43 always verify with the advertiser before any decision. Rent-Ka cannot44 be held responsible for a gap between a listing page and the original45 ad.46 </p>47 </section>4849 <section>50 <h3>Content ownership</h3>51 <p>52 Listing texts and photos belong to their authors (managers, brokers,53 advertisers). Rent-Ka presents them with a clear link to the source.54 You are the author of content and want it removed? Write to{" "}55 <a href="mailto:contact@groupe-ka.com">contact@groupe-ka.com</a> —56 removals are handled quickly.57 </p>58 </section>5960 <section>61 <h3>Acceptable use</h3>62 <p>63 The service is offered for personal housing search. Mass scraping of64 the site, resale of the aggregated data or any use that degrades the65 service is forbidden.66 </p>67 </section>6869 <section>70 <h3>Legal and privacy questions</h3>71 <p>72 Legal questions and those touching personal information are handled73 by <a href="mailto:admin@groupe-ka.com">admin@groupe-ka.com</a>. See74 also the <Link to="/privacy">privacy policy</Link>.75 </p>76 </section>7778 <div className="fine">Last updated: August 2026.</div>79 </div>80 );81}82