← back to Homesonspec

apps/web/src/app/privacy/page.tsx

112 lines

import type { Metadata } from "next";

export const metadata: Metadata = {
  title: "Privacy Policy — Homes on Spec",
  description:
    "How Homes on Spec handles data across the website and the Homes on Spec iOS app.",
};

const UPDATED = "August 6, 2026";

export default function PrivacyPage() {
  return (
    <main className="mx-auto max-w-3xl px-5 py-12">
      <h1 className="font-display text-3xl font-semibold sm:text-4xl">
        Privacy Policy
      </h1>
      <p className="mt-2 text-sm text-gray-500">Last updated: {UPDATED}</p>

      <div className="mt-8 space-y-6 text-[15px] leading-relaxed text-gray-700">
        <p>
          Homes on Spec (&ldquo;we&rdquo;, &ldquo;us&rdquo;) operates the website
          homesonspec.com and the Homes on Spec iOS app. This policy explains what
          we collect and how we use it. Our guiding principle is to collect as
          little as possible: the app requires no account and no sign-in to browse,
          search, save homes, or view the map.
        </p>

        <section>
          <h2 className="font-display text-xl font-semibold text-gray-900">
            Information we do NOT collect
          </h2>
          <ul className="mt-3 list-disc space-y-1 pl-5">
            <li>No account, name, email, or password is required to use the app.</li>
            <li>We do not sell, rent, or share your personal information.</li>
            <li>We do not track you across other apps or websites for advertising.</li>
          </ul>
        </section>

        <section>
          <h2 className="font-display text-xl font-semibold text-gray-900">
            Information handled on your device
          </h2>
          <ul className="mt-3 list-disc space-y-1 pl-5">
            <li>
              <strong>Saved homes.</strong> When you save a home, it is stored
              locally on your device only. It is not sent to our servers and is
              removed when you unsave it or delete the app.
            </li>
            <li>
              <strong>Notification preferences &amp; push token.</strong> If you
              opt in to alerts, your notification preference and the device push
              token are stored locally on your device. New-listing push delivery is
              a roadmap feature and is not yet active.
            </li>
            <li>
              <strong>Location.</strong> If you grant location access, it is used
              only to center the in-app map on your area. Your location is not
              stored or transmitted to us.
            </li>
          </ul>
        </section>

        <section>
          <h2 className="font-display text-xl font-semibold text-gray-900">
            Listing data
          </h2>
          <p className="mt-3">
            The homes, communities, plans, and prices shown are aggregated from
            publicly available builder sources. This is property information, not
            information about you.
          </p>
        </section>

        <section>
          <h2 className="font-display text-xl font-semibold text-gray-900">
            Website analytics
          </h2>
          <p className="mt-3">
            On homesonspec.com we may use privacy-respecting, aggregate analytics to
            understand traffic and improve the site. These do not identify you
            personally.
          </p>
        </section>

        <section>
          <h2 className="font-display text-xl font-semibold text-gray-900">
            Children&rsquo;s privacy
          </h2>
          <p className="mt-3">
            Homes on Spec is not directed to children under 13 and we do not
            knowingly collect information from them.
          </p>
        </section>

        <section>
          <h2 className="font-display text-xl font-semibold text-gray-900">
            Contact
          </h2>
          <p className="mt-3">
            Questions about this policy? Reach us through the{" "}
            <a className="text-blue-700 underline" href="/contact">
              contact page
            </a>
            . We may update this policy from time to time; the date above reflects
            the latest revision.
          </p>
        </section>
      </div>
    </main>
  );
}