import Link from 'next/link';
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'I Hate PDFs Privacy Policy',
description: 'Privacy policy for I Hate PDFs, a macOS PDF reader that keeps files local and does not collect personal data.',
alternates: {
canonical: '/ihatepdfs/privacy',
},
openGraph: {
title: 'I Hate PDFs Privacy Policy',
description: 'I Hate PDFs does not collect, store, transmit, sell, or share personal data.',
url: '/ihatepdfs/privacy',
},
};
const sections = [
{
title: 'Data Collection',
body: 'I Hate PDFs does not collect, store, transmit, sell, or share personal data.',
},
{
title: 'PDF Files',
body: 'PDF files opened in the app stay on your Mac. Annotations and comments are saved only when you choose to save or export a PDF.',
},
{
title: 'Analytics And Tracking',
body: 'The app does not use analytics, advertising, tracking, accounts, or third-party SDKs.',
},
{
title: 'macOS Sharing',
body: 'If you use macOS sharing features, Apple or the selected sharing service may process the file according to their own privacy policies.',
},
];
export default function IHatePDFsPrivacyPage() {
return (
Summary
I Hate PDFs is designed as a local macOS app. It does not collect personal data and does not upload your PDF files to a server.
{sections.map((section) => (
{section.title}
{section.body}
))}
);
}