import { Head } from '@inertiajs/react' import { useTranslation } from 'react-i18next' import SettingsLayout from '~/layouts/SettingsLayout' export default function LegalPage() { const { t } = useTranslation() return (

{t('legal.heading')}

{/* License Agreement */}

{t('legal.licenseAgreement')}

{t('legal.copyright')}

{t('legal.licenseText1')}

https://www.apache.org/licenses/LICENSE-2.0

{t('legal.licenseText2')}

{/* Third-Party Software */}

{t('legal.thirdParty')}

{t('legal.thirdPartyIntro')}

{/* Privacy Statement */}

{t('legal.privacyStatement')}

{t('legal.privacyIntro')}

  • {t('legal.zeroTelemetry')} {t('legal.zeroTelemetryText')}
  • {t('legal.localFirst')} {t('legal.localFirstText')}
  • {t('legal.noAccounts')} {t('legal.noAccountsText')}
  • {t('legal.networkOptional')} {t('legal.networkOptionalText')}
{/* Content Disclaimer */}

{t('legal.contentDisclaimer')}

{t('legal.contentDisclaimerText1')}

{t('legal.contentDisclaimerText2')}

{t('legal.contentDisclaimerText3')}

{/* Medical Disclaimer */}

{t('legal.medicalDisclaimer')}

{t('legal.medicalDisclaimerText1')}

{t('legal.medicalDisclaimerText2')}

  • {t('legal.medicalPoint1')}
  • {t('legal.medicalPoint2')}
  • {t('legal.medicalPoint3')}
  • {t('legal.medicalPoint4')}
{/* Data Storage Notice */}

{t('legal.dataStorage')}

{t('legal.dataStorageIntro')}

  • {t('legal.installationDirectory')} /opt/project-nomad
  • {t('legal.downloadedContent')} /opt/project-nomad/storage
  • {t('legal.applicationData')} {t('legal.applicationDataValue')}

{t('legal.dataStorageNote')}

) }