-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (88 loc) · 4.54 KB
/
index.html
File metadata and controls
93 lines (88 loc) · 4.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/pdf-icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>PDF Diff - Compare PDFs Privately & Securely in Your Browser</title>
<meta name="title" content="PDF Diff - Compare PDFs Privately & Securely in Your Browser" />
<meta name="description" content="Free online PDF comparison tool with CLI support. Compare PDF documents privately and securely in your browser or via command line. No uploads, no servers, 100% client-side. Perfect for comparing contracts, invoices, and CI/CD pipelines." />
<meta name="keywords" content="pdf diff, pdf compare, compare pdf files, pdf comparison tool, diff pdf documents, pdf difference checker, compare pdf online, free pdf diff, secure pdf comparison, private pdf compare, pdf diff cli, npx pdf-diff, command line pdf compare" />
<meta name="author" content="James Montemagno" />
<meta name="robots" content="index, follow" />
<link rel="canonical" href="https://www.pdf-diff.com/" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.pdf-diff.com/" />
<meta property="og:title" content="PDF Diff - Compare PDFs Privately & Securely in Your Browser" />
<meta property="og:description" content="Free online PDF comparison tool with CLI support. Compare PDF documents privately in your browser or via command line (npx). No uploads, no servers, 100% client-side processing." />
<meta property="og:image" content="https://www.pdf-diff.com/social-banner.png" />
<meta property="og:image:alt" content="PDF Diff - Compare PDFs Privately in Your Browser" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:site_name" content="PDF Diff" />
<meta property="og:locale" content="en_US" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://www.pdf-diff.com/" />
<meta property="twitter:title" content="PDF Diff - Compare PDFs Privately & Securely in Your Browser" />
<meta property="twitter:description" content="Free online PDF comparison tool with CLI support. Compare PDF documents privately in your browser or via command line (npx). No uploads, no servers, 100% client-side processing." />
<meta property="twitter:image" content="https://www.pdf-diff.com/social-banner.png" />
<meta property="twitter:image:alt" content="PDF Diff - Compare PDFs Privately in Your Browser" />
<meta property="twitter:creator" content="@JamesMontemagno" />
<!-- Additional SEO Tags -->
<meta name="theme-color" content="#6366f1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="PDF Diff" />
<link rel="manifest" href="/manifest.json" />
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "PDF Diff",
"applicationCategory": "UtilitiesApplication",
"operatingSystem": "Any",
"url": "https://www.pdf-diff.com",
"description": "Compare PDF documents privately and securely in your browser. No uploads, no servers, just local processing.",
"browserRequirements": "Requires JavaScript. Requires HTML5.",
"softwareVersion": "1.0",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
},
"featureList": [
"Client-side PDF processing",
"No server uploads",
"Privacy-focused",
"Side-by-side comparison",
"Unified diff view",
"Export to PDF",
"Multi-page support",
"Dark/Light theme",
"Command line interface (CLI)",
"npx support - zero install",
"CI/CD integration"
],
"screenshot": "https://www.pdf-diff.com/pdf-icon.svg",
"author": {
"@type": "Person",
"name": "James Montemagno",
"url": "https://github.com/jamesmontemagno"
},
"provider": {
"@type": "Organization",
"name": "PDF Diff",
"url": "https://www.pdf-diff.com"
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>