export default function LegalPage({ page, dark, onBack }) { return (
POKERFACE
{page === 'terms' && } {page === 'privacy' && } {page === 'support' && }
); } function Heading({ children, dark }) { return

{children}

; } function SubHeading({ children, dark }) { return

{children}

; } function P({ children, dark }) { return

{children}

; } function Li({ children, dark }) { return
  • {children}
  • ; } function TermsOfService({ dark }) { return ( <> Terms of Service

    Last updated: February 2026

    1. Acceptance

    By accessing or using Pokerface ("the Service"), you agree to these terms. If you do not agree, do not use the Service.

    2. Description

    Pokerface is a free sprint planning poker tool that integrates with Atlassian Jira. It is provided as a convenience for agile teams to facilitate estimation sessions.

    3. No Warranty

    THE SERVICE IS PROVIDED "AS IS" AND "AS AVAILABLE" WITHOUT WARRANTIES OF ANY KIND, WHETHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE. THIS INCLUDES, WITHOUT LIMITATION, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT. NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM THE SERVICE SHALL CREATE ANY WARRANTY NOT EXPRESSLY STATED HEREIN.

    4. Limitation of Liability

    TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL THE DEVELOPERS, OPERATORS, OR CONTRIBUTORS OF POKERFACE BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, OR ANY LOSS OF PROFITS, DATA, USE, OR GOODWILL, HOWEVER CAUSED AND UNDER ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY, OR OTHERWISE, ARISING OUT OF OR IN CONNECTION WITH YOUR ACCESS TO OR USE OF (OR INABILITY TO USE) THE SERVICE.

    THE TOTAL AGGREGATE LIABILITY OF THE SERVICE OPERATORS FOR ALL CLAIMS RELATING TO THE SERVICE SHALL NOT EXCEED ZERO EUROS (EUR 0.00).

    5. No Guarantee of Availability

    The Service may be modified, suspended, or discontinued at any time without notice. We are under no obligation to maintain, support, or update the Service.

    6. User Responsibilities

    You are responsible for your use of the Service and any data you transmit through it. You must comply with Atlassian's terms of service when using Jira integration features.

    7. Third-Party Services

    Pokerface integrates with Atlassian Jira via OAuth. Your use of Jira is governed by Atlassian's own terms and privacy policy. We are not responsible for any third-party service availability or behavior.

    8. Changes to Terms

    These terms may be updated at any time. Continued use of the Service after changes constitutes acceptance of the revised terms.

    ); } function PrivacyPolicy({ dark }) { return ( <> Privacy Policy

    Last updated: February 2026

    1. What Data We Collect

    When you sign in with Jira, we receive the following information from Atlassian via OAuth:

    During poker sessions, we temporarily store:

    2. How We Use Your Data

    Your data is used solely to operate the poker planning functionality: authenticating you with Jira, displaying participants in sessions, recording votes, and writing agreed estimates back to Jira issues. We do not use your data for analytics, advertising, profiling, or any other purpose.

    3. Data Storage and Retention

    All data is stored in NATS JetStream key-value buckets with automatic time-to-live (TTL) expiration:

    There is no long-term database. All session data is ephemeral and automatically purged by TTL. When a poker session is saved, the session data is deleted immediately.

    4. Cookies

    Pokerface uses a single, strictly functional cookie:

    We do not use tracking cookies, analytics cookies, or any third-party cookies. A dark mode preference is stored in your browser's localStorage (not a cookie) and never sent to our servers.

    5. Data Sharing

    We do not sell, share, or transfer your personal data to any third party. The only external communication is between our backend and Atlassian's Jira API, using the OAuth tokens you authorized, to read project/sprint data and write estimates back to issues.

    6. Data Security

    All traffic is encrypted via HTTPS in production. Session cookies are marked HttpOnly and Secure. Security headers (HSTS, X-Frame-Options DENY, nosniff) are applied to all responses. OAuth tokens are stored server-side only and never exposed to the browser.

    7. Your Rights

    Since all data expires automatically within 24 hours, there is no persistent personal data to request deletion of. You can sign out at any time to clear your session cookie. Revoking the Pokerface OAuth connection in your Atlassian account settings will invalidate all stored tokens.

    8. Open Source

    Pokerface is open source. If you want to verify how your data is handled, you can review the full source code at{' '} git.faralmail.com/faral/pokerface .

    ); } function Support({ dark }) { return ( <> Support

    Last updated: February 2026

    About Pokerface

    Pokerface is a free, open tool for sprint planning poker with Jira integration. It is provided as-is, with no guarantees of availability, support, or maintenance.

    No Formal Support

    This product does not come with dedicated support, SLAs, or guaranteed response times. There is no helpdesk, ticketing system, or support team.

    Best-Effort Assistance

    If you encounter a bug or issue, you may reach out via the project's repository. Any assistance is provided on a best-effort basis at the maintainer's discretion.

    Alternatives

    If Pokerface does not meet your needs, there are many alternative planning poker tools available in the Atlassian Marketplace and elsewhere. You are free to stop using Pokerface at any time — simply sign out and revoke the OAuth connection in your Atlassian account settings.

    ); }