|
| 1 | +import Link from "next/link"; |
| 2 | +import { pageMeta } from "@/lib/metadata"; |
| 3 | + |
| 4 | +export const metadata = pageMeta({ |
| 5 | + title: "Privacy Policy", |
| 6 | + description: "How AIchitect collects, uses, and protects your data.", |
| 7 | + path: "/privacy", |
| 8 | +}); |
| 9 | + |
| 10 | +export default function PrivacyPage() { |
| 11 | + return ( |
| 12 | + <div className="max-w-2xl mx-auto px-6 py-12"> |
| 13 | + <nav |
| 14 | + className="flex items-center gap-1.5 text-xs mb-8" |
| 15 | + style={{ color: "var(--text-muted)" }} |
| 16 | + > |
| 17 | + <Link href="/" className="hover:underline"> |
| 18 | + AIchitect |
| 19 | + </Link> |
| 20 | + <span>/</span> |
| 21 | + <span style={{ color: "var(--text-secondary)" }}>Privacy Policy</span> |
| 22 | + </nav> |
| 23 | + |
| 24 | + <h1 className="text-2xl font-bold mb-2" style={{ color: "var(--text-primary)" }}> |
| 25 | + Privacy Policy |
| 26 | + </h1> |
| 27 | + <p className="text-xs mb-10" style={{ color: "var(--text-muted)" }}> |
| 28 | + Last updated: March 2026 |
| 29 | + </p> |
| 30 | + |
| 31 | + <div className="space-y-8 text-sm leading-relaxed" style={{ color: "var(--text-secondary)" }}> |
| 32 | + <section> |
| 33 | + <h2 className="text-base font-semibold mb-2" style={{ color: "var(--text-primary)" }}> |
| 34 | + 1. Who we are |
| 35 | + </h2> |
| 36 | + <p> |
| 37 | + AIchitect (<strong>aichitect.dev</strong>) is a tool discovery and stack-building |
| 38 | + platform for AI developers. This policy explains what personal data we collect, why we |
| 39 | + collect it, and your rights under applicable data protection law including the EU |
| 40 | + General Data Protection Regulation (GDPR). |
| 41 | + </p> |
| 42 | + <p className="mt-2"> |
| 43 | + For data-related requests, contact us at:{" "} |
| 44 | + <a href="mailto:privacy@aichitect.dev" style={{ color: "var(--accent)" }}> |
| 45 | + privacy@aichitect.dev |
| 46 | + </a> |
| 47 | + </p> |
| 48 | + </section> |
| 49 | + |
| 50 | + <section> |
| 51 | + <h2 className="text-base font-semibold mb-2" style={{ color: "var(--text-primary)" }}> |
| 52 | + 2. What we collect |
| 53 | + </h2> |
| 54 | + <p>When you sign in with GitHub OAuth, we receive and store:</p> |
| 55 | + <ul className="mt-2 space-y-1 pl-4 list-disc"> |
| 56 | + <li>GitHub username</li> |
| 57 | + <li>GitHub user ID</li> |
| 58 | + <li>Avatar URL (your GitHub profile picture URL)</li> |
| 59 | + </ul> |
| 60 | + <p className="mt-3">When you interact with the product, we store:</p> |
| 61 | + <ul className="mt-2 space-y-1 pl-4 list-disc"> |
| 62 | + <li> |
| 63 | + Tool usage selections — the tools you mark as "I use this", along with a |
| 64 | + timestamp |
| 65 | + </li> |
| 66 | + </ul> |
| 67 | + <p className="mt-3"> |
| 68 | + We do not collect email addresses, passwords, browsing history, or any data beyond what |
| 69 | + is listed above. |
| 70 | + </p> |
| 71 | + </section> |
| 72 | + |
| 73 | + <section> |
| 74 | + <h2 className="text-base font-semibold mb-2" style={{ color: "var(--text-primary)" }}> |
| 75 | + 3. Why we collect it |
| 76 | + </h2> |
| 77 | + <ul className="space-y-1 pl-4 list-disc"> |
| 78 | + <li> |
| 79 | + <strong>Authentication</strong> — to identify you across sessions via GitHub OAuth |
| 80 | + </li> |
| 81 | + <li> |
| 82 | + <strong>Personalisation</strong> — to display your tool badge wall at{" "} |
| 83 | + <code>/profile/[username]</code> and surface usage counts on tools |
| 84 | + </li> |
| 85 | + </ul> |
| 86 | + <p className="mt-3"> |
| 87 | + Our lawful basis for processing is <strong>legitimate interests</strong> (providing the |
| 88 | + service you signed up for). No data is sold or used for advertising. |
| 89 | + </p> |
| 90 | + </section> |
| 91 | + |
| 92 | + <section> |
| 93 | + <h2 className="text-base font-semibold mb-2" style={{ color: "var(--text-primary)" }}> |
| 94 | + 4. How long we keep it |
| 95 | + </h2> |
| 96 | + <p> |
| 97 | + Your data is retained for as long as your account exists. Deleting your account |
| 98 | + permanently removes all stored data — see section 6. |
| 99 | + </p> |
| 100 | + </section> |
| 101 | + |
| 102 | + <section> |
| 103 | + <h2 className="text-base font-semibold mb-2" style={{ color: "var(--text-primary)" }}> |
| 104 | + 5. Sub-processors |
| 105 | + </h2> |
| 106 | + <p>We use the following third-party services to operate AIchitect:</p> |
| 107 | + <ul className="mt-2 space-y-2 pl-4 list-disc"> |
| 108 | + <li> |
| 109 | + <strong>Supabase</strong> — database and authentication. Your profile and tool usage |
| 110 | + data is stored in a Supabase-managed PostgreSQL instance. Supabase acts as a data |
| 111 | + processor under a signed DPA.{" "} |
| 112 | + <a |
| 113 | + href="https://supabase.com/privacy" |
| 114 | + target="_blank" |
| 115 | + rel="noopener noreferrer" |
| 116 | + style={{ color: "var(--accent)" }} |
| 117 | + > |
| 118 | + Supabase Privacy Policy ↗ |
| 119 | + </a> |
| 120 | + </li> |
| 121 | + <li> |
| 122 | + <strong>Vercel</strong> — application hosting and edge network. All HTTP traffic, |
| 123 | + including OAuth callbacks, passes through Vercel infrastructure.{" "} |
| 124 | + <a |
| 125 | + href="https://vercel.com/legal/privacy-policy" |
| 126 | + target="_blank" |
| 127 | + rel="noopener noreferrer" |
| 128 | + style={{ color: "var(--accent)" }} |
| 129 | + > |
| 130 | + Vercel Privacy Policy ↗ |
| 131 | + </a> |
| 132 | + </li> |
| 133 | + </ul> |
| 134 | + </section> |
| 135 | + |
| 136 | + <section> |
| 137 | + <h2 className="text-base font-semibold mb-2" style={{ color: "var(--text-primary)" }}> |
| 138 | + 6. Your rights |
| 139 | + </h2> |
| 140 | + <p>Under GDPR you have the right to:</p> |
| 141 | + <ul className="mt-2 space-y-1 pl-4 list-disc"> |
| 142 | + <li> |
| 143 | + <strong>Access</strong> — request a copy of the data we hold about you |
| 144 | + </li> |
| 145 | + <li> |
| 146 | + <strong>Rectification</strong> — ask us to correct inaccurate data |
| 147 | + </li> |
| 148 | + <li> |
| 149 | + <strong>Erasure</strong> — delete your account and all associated data at any time |
| 150 | + from your{" "} |
| 151 | + <Link href="/profile" style={{ color: "var(--accent)" }}> |
| 152 | + profile page |
| 153 | + </Link> |
| 154 | + </li> |
| 155 | + <li> |
| 156 | + <strong>Portability</strong> — request your data in a machine-readable format |
| 157 | + </li> |
| 158 | + <li> |
| 159 | + <strong>Object</strong> — object to processing based on legitimate interests |
| 160 | + </li> |
| 161 | + </ul> |
| 162 | + <p className="mt-3"> |
| 163 | + To exercise any of these rights, email{" "} |
| 164 | + <a href="mailto:privacy@aichitect.dev" style={{ color: "var(--accent)" }}> |
| 165 | + privacy@aichitect.dev |
| 166 | + </a> |
| 167 | + . We will respond within 30 days. |
| 168 | + </p> |
| 169 | + </section> |
| 170 | + |
| 171 | + <section> |
| 172 | + <h2 className="text-base font-semibold mb-2" style={{ color: "var(--text-primary)" }}> |
| 173 | + 7. Cookies |
| 174 | + </h2> |
| 175 | + <p> |
| 176 | + We use a single session cookie set by Supabase Auth to keep you signed in. This cookie |
| 177 | + is strictly necessary for the service to function and does not require consent under |
| 178 | + GDPR or the ePrivacy Directive. |
| 179 | + </p> |
| 180 | + <p className="mt-2"> |
| 181 | + We do not use analytics cookies, advertising cookies, or tracking pixels. |
| 182 | + </p> |
| 183 | + </section> |
| 184 | + |
| 185 | + <section> |
| 186 | + <h2 className="text-base font-semibold mb-2" style={{ color: "var(--text-primary)" }}> |
| 187 | + 8. Changes to this policy |
| 188 | + </h2> |
| 189 | + <p> |
| 190 | + If we make material changes we will update the date at the top of this page. Continued |
| 191 | + use of the service after a change constitutes acceptance. |
| 192 | + </p> |
| 193 | + </section> |
| 194 | + </div> |
| 195 | + </div> |
| 196 | + ); |
| 197 | +} |
0 commit comments