SPB Git forge

spb/home-ka

Public
10commits 1branches 0releases
793.0 KBsize
maindefault branch
20 days agolast push
Python 49.6% TypeScript 25.5% CSS 24.1%
4.6 KB · 130 lines tsx
Raw Blame History
1// -----------------------------------------------------------------------------2// Home-Ka — US real-estate aggregator (Groupe KA)3// Author: Simon-Pierre Boucher — contact@spboucher.ai4// Legal.tsx : Terms of Use & Privacy Policy5// -----------------------------------------------------------------------------6const UPDATED = "August 28, 2026";78function LegalShell({ title, children }: { title: string; children: React.ReactNode }) {9  return (10    <div className="container legal">11      <h1>{title}</h1>12      <p className="legal-meta">13        Home-Ka is a <b>Groupe KA</b> application. Last updated: {UPDATED}.14      </p>15      {children}16    </div>17  );18}1920export function TermsPage() {21  return (22    <LegalShell title="Terms of Use">23      <h2>1. The application</h2>24      <p>25        Home-Ka (<a href="https://www.home-ka.com">www.home-ka.com</a>) is an26        independent aggregator of homes for sale in the United States, operated27        by <b>Groupe KA</b>. Listings come from public brokerage websites,28        MLS/RESO feeds and listing platforms; every listing links back to the29        original announcement at the source.30      </p>3132      <h2>2. No brokerage role</h2>33      <p>34        Groupe KA is not a real-estate brokerage and does not act as a broker,35        agent or intermediary under any US state real-estate license law.36        Home-Ka takes part in no transaction: any purchase inquiry must be made37        directly with the brokerage, agent or seller identified on the listing.38      </p>3940      <h2>3. Accuracy of information</h2>41      <p>42        Data (prices, characteristics, photos, statuses) is provided for43        informational purposes only, with no warranty of accuracy, completeness44        or timeliness. The official record remains the original listing at the45        source. Nothing on Home-Ka constitutes a professional appraisal or46        financial advice.47      </p>4849      <h2>4. Intellectual property</h2>50      <p>51        Photos and descriptions belong to their respective brokerages, agents52        or sellers. Any rights holder may request removal of content by writing53        to <a href="mailto:contact@spboucher.ai">contact@spboucher.ai</a> —54        requests are handled promptly.55      </p>5657      <h2>5. Permitted use</h2>58      <p>59        The application is offered for personal, non-commercial use. Bulk data60        extraction, resale of the data or interference with the service are61        prohibited.62      </p>6364      <h2>6. Limitation of liability</h2>65      <p>66        Groupe KA cannot be held liable for decisions made on the basis of the67        information displayed, nor for errors originating from aggregated68        sources. The application is provided "as is", with no availability69        warranty.70      </p>7172      <h2>7. Contact</h2>73      <p>74        Questions about these terms:{" "}75        <a href="mailto:contact@spboucher.ai">contact@spboucher.ai</a>.76      </p>77    </LegalShell>78  );79}8081export function PrivacyPage() {82  return (83    <LegalShell title="Privacy Policy">84      <h2>1. Information collected</h2>85      <p>86        Home-Ka works <b>without user accounts</b> and collects no personally87        identifiable information while you browse. Technical server logs (IP88        address, pages viewed, browser) are used solely to operate and secure89        the service, and are purged periodically.90      </p>9192      <h2>2. Cookies</h2>93      <p>94        The application uses no advertising cookies and no third-party95        trackers. Only local settings (display preferences, the optional admin96        token) may be stored in your browser.97      </p>9899      <h2>3. Displayed data</h2>100      <p>101        Property pages come from listings already public on the source102        brokerage websites and platforms. Agent names and contact details shown103        are those the source itself publishes for professional solicitation.104      </p>105106      <h2>4. Sharing</h2>107      <p>108        Groupe KA does not sell, rent or share any visit data with third109        parties.110      </p>111112      <h2>5. Your rights</h2>113      <p>114        You may request access to, correction of, or removal of personal115        information concerning you — for instance if your property or your116        contact details appear on a page and you want them removed. Applicable117        state privacy laws (such as the California Consumer Privacy Act) are118        honored.119      </p>120121      <h2>6. Contact</h2>122      <p>123        Privacy requests and general questions:{" "}124        <a href="mailto:contact@spboucher.ai">contact@spboucher.ai</a>. Every125        request receives a reply within 30 days.126      </p>127    </LegalShell>128  );129}130