+ This policy describes what {siteConfig.name} (“we”, “us”) collects and
+ how we use it when you use our web app and related services. We process
+ data only as needed to provide the product and to keep your account
+ secure.
+
+
+
What we collect
+
+ When you sign in with GitHub, we receive basic profile information that
+ GitHub makes available to the OAuth application (for example your GitHub
+ username and, where applicable, your email address). We also create and
+ store session and account records so you can stay signed in and use the
+ service.
+
+
+ To show pull requests, issues, reviews, and repository context, we fetch
+ data from GitHub’s APIs on your behalf. We may cache or store limited
+ metadata and content needed to make the dashboard fast and reliable (for
+ example identifiers, titles, state, timestamps, and similar fields).
+
+
+
Where your actions happen
+
+ Actions that change data on GitHub—such as posting comments, submitting
+ reviews, merging, or editing resources—are performed through GitHub’s
+ platform. {siteConfig.name} does not replace GitHub’s own terms or
+ privacy commitments for how GitHub processes data when you use{" "}
+
+ github.com
+ {" "}
+ or GitHub’s APIs.
+
+
+
How we use data
+
+
Operating authentication, sessions, and security.
+
+ Displaying and syncing GitHub information you choose to access in the
+ product.
+
+
+ Improving reliability and fixing errors (including limited logs).
+
+
+
+
Sharing
+
+ We do not sell your personal information. We use infrastructure
+ providers (such as hosting and database services) to run the
+ application; they process data only to provide the service.
+
+
+
Retention and deletion
+
+ We retain data for as long as your account is active and as needed for
+ the purposes above. You can disconnect access from GitHub’s side
+ according to GitHub’s settings for authorized applications. For data
+ held by us, contact us via{" "}
+
+ GitHub Issues
+ {" "}
+ and we will handle reasonable requests in line with applicable law.
+
+
+
Changes
+
+ We may update this policy from time to time. The “Last updated” date
+ below will change when we do.
+
+
+
+
+ );
+}
diff --git a/apps/dashboard/src/routes/terms.tsx b/apps/dashboard/src/routes/terms.tsx
new file mode 100644
index 0000000..2ef528d
--- /dev/null
+++ b/apps/dashboard/src/routes/terms.tsx
@@ -0,0 +1,100 @@
+import { createFileRoute, Link } from "@tanstack/react-router";
+import { LegalDocumentLayout } from "#/components/legal/legal-document-layout";
+import { buildSeo, formatPageTitle } from "#/lib/seo";
+import { siteConfig } from "#/lib/site-config";
+
+const issuesUrl = `${siteConfig.githubRepositoryUrl}/issues`;
+
+export const Route = createFileRoute("/terms")({
+ head: ({ match }) =>
+ buildSeo({
+ path: match.pathname,
+ title: formatPageTitle("Terms of Service"),
+ description: `Terms for using ${siteConfig.name} and how the service relates to GitHub.`,
+ robots: "index",
+ }),
+ component: TermsPage,
+});
+
+function TermsPage() {
+ return (
+
+
+ These terms govern your use of {siteConfig.name} (the “Service”),
+ offered at {siteConfig.url}. By using the Service, you agree to these
+ terms.
+
+
+
The Service
+
+ {siteConfig.name} is a dashboard that helps you view and work with
+ GitHub pull requests, issues, and related activity. The Service is
+ provided for your use subject to these terms and our{" "}
+
+ Privacy Policy
+
+ .
+
+
+
GitHub
+
+ You must have a GitHub account and comply with GitHub’s terms and
+ policies when using GitHub. Signing in through GitHub is subject to
+ GitHub’s authentication and permission flows. Data creation, changes,
+ and permissions on repositories are ultimately governed by GitHub and
+ your settings on{" "}
+
+ github.com
+
+ .
+
+
+
Your responsibilities
+
+
You are responsible for activity under your account.
+
+ You may not misuse the Service, attempt unauthorized access, or use it
+ in violation of law or third-party rights.
+
+
+
+
Availability and changes
+
+ We may modify, suspend, or discontinue features (including during early
+ or beta periods). We strive for reliability but do not guarantee
+ uninterrupted or error-free operation.
+
+
+
Disclaimer
+
+ The Service is provided “as is” without warranties of any kind, to the
+ maximum extent permitted by law.
+
+
+
Limitation of liability
+
+ To the maximum extent permitted by law, we are not liable for indirect,
+ incidental, special, consequential, or punitive damages, or for loss of
+ profits, data, or goodwill, arising from your use of the Service.
+
+
+
Contact
+
+ Questions about these terms: open a discussion on{" "}
+
+ GitHub Issues
+
+ .
+