AUXteam commited on
Commit
52d7c6c
·
verified ·
1 Parent(s): a5ba67c

Upload about.html with huggingface_hub

Browse files
Files changed (1) hide show
  1. about.html +315 -0
about.html ADDED
@@ -0,0 +1,315 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+
7
+ <!-- Primary Meta Tags -->
8
+ <title>About BentoPDF - Privacy-First Free PDF Tools | Our Mission</title>
9
+ <meta
10
+ name="description"
11
+ content="Learn about BentoPDF - 100% free, privacy-first PDF toolkit. All tools run in your browser, no uploads, no signup. Fast, secure, and forever free."
12
+ />
13
+ <meta
14
+ name="keywords"
15
+ content="about bentopdf, privacy-first pdf, free pdf tools, browser-based pdf, open source pdf"
16
+ />
17
+ <meta name="author" content="BentoPDF" />
18
+ <meta name="robots" content="index, follow" />
19
+
20
+ <!-- Canonical URL -->
21
+ <link rel="canonical" href="https://www.bentopdf.com/about.html" />
22
+
23
+ <!-- Open Graph -->
24
+ <meta property="og:type" content="website" />
25
+ <meta property="og:url" content="https://www.bentopdf.com/about" />
26
+ <meta
27
+ property="og:title"
28
+ content="About BentoPDF - Privacy-First Free PDF Tools"
29
+ />
30
+ <meta
31
+ property="og:description"
32
+ content="100% free PDF toolkit. Privacy-first, browser-based, no signups. Learn about our mission and values."
33
+ />
34
+ <meta
35
+ property="og:image"
36
+ content="https://www.bentopdf.com/images/og-about.png"
37
+ />
38
+ <meta property="og:site_name" content="BentoPDF" />
39
+
40
+ <!-- Twitter Card -->
41
+ <meta name="twitter:card" content="summary_large_image" />
42
+ <meta name="twitter:title" content="About BentoPDF" />
43
+ <meta
44
+ name="twitter:description"
45
+ content="Privacy-first, free PDF tools that run in your browser."
46
+ />
47
+ <meta
48
+ name="twitter:image"
49
+ content="https://www.bentopdf.com/images/twitter-about.png"
50
+ />
51
+ <meta name="twitter:site" content="@BentoPDF" />
52
+
53
+ <link href="/src/css/styles.css" rel="stylesheet" />
54
+
55
+ <!-- Web App Manifest -->
56
+ <link rel="manifest" href="/site.webmanifest" />
57
+
58
+ <!-- Favicons -->
59
+ <link rel="icon" type="image/svg+xml" href="/images/favicon.svg" />
60
+ <link
61
+ rel="icon"
62
+ type="image/png"
63
+ sizes="192x192"
64
+ href="/images/favicon-192x192.png"
65
+ />
66
+ <link
67
+ rel="icon"
68
+ type="image/png"
69
+ sizes="512x512"
70
+ href="/images/favicon-512x512.png"
71
+ />
72
+ <link
73
+ rel="apple-touch-icon"
74
+ sizes="180x180"
75
+ href="/images/apple-touch-icon.png"
76
+ />
77
+ <link rel="icon" href="/favicon.ico" sizes="32x32" />
78
+ </head>
79
+
80
+ <body class="antialiased bg-gray-900 text-gray-300">
81
+ {{> navbar }}
82
+
83
+ <div id="app" class="min-h-screen container mx-auto p-4 md:p-8">
84
+ <section id="about-hero" class="text-center py-16 md:py-24">
85
+ <h1 class="text-3xl md:text-6xl font-bold text-white mb-4">
86
+ <span data-i18n="about.hero.title"
87
+ >We believe PDF tools should be</span
88
+ >
89
+ <span class="marker-slanted" data-i18n="about.hero.subtitle"
90
+ >fast, private, and free.</span
91
+ >
92
+ </h1>
93
+ <p
94
+ class="text-lg md:text-xl text-gray-400"
95
+ data-i18n="about.hero.noCompromises"
96
+ >
97
+ No compromises.
98
+ </p>
99
+ </section>
100
+
101
+ <div class="section-divider"></div>
102
+
103
+ <section id="mission-section" class="py-16 max-w-4xl mx-auto">
104
+ <div class="text-center">
105
+ <i
106
+ data-lucide="rocket"
107
+ class="w-16 h-16 text-indigo-400 mx-auto mb-6"
108
+ ></i>
109
+ <h2
110
+ class="text-3xl md:text-4xl font-bold text-white mb-4"
111
+ data-i18n="about.mission.title"
112
+ >
113
+ Our Mission
114
+ </h2>
115
+ <p
116
+ class="text-lg text-gray-400 leading-relaxed"
117
+ data-i18n="about.mission.description"
118
+ >
119
+ To provide the most comprehensive PDF toolbox that respects your
120
+ privacy and never asks for payment. We believe essential document
121
+ tools should be accessible to everyone, everywhere, without
122
+ barriers.
123
+ </p>
124
+ </div>
125
+ </section>
126
+
127
+ <div
128
+ class="bg-gray-800 rounded-xl p-8 md:p-12 my-16 border border-gray-700"
129
+ >
130
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
131
+ <div class="text-center md:text-left">
132
+ <span
133
+ class="text-indigo-400 font-bold uppercase"
134
+ data-i18n="about.philosophy.label"
135
+ >Our Core Philosophy</span
136
+ >
137
+ <h2
138
+ class="text-3xl md:text-4xl font-bold text-white mt-2 mb-4"
139
+ data-i18n="about.philosophy.title"
140
+ >
141
+ Privacy First. Always.
142
+ </h2>
143
+ <p
144
+ class="text-gray-400 leading-relaxed"
145
+ data-i18n="about.philosophy.description"
146
+ >
147
+ In an era where data is a commodity, we take a different approach.
148
+ All processing for Bentopdf tools happens locally in your browser.
149
+ This means your files never touch our servers, we never see your
150
+ documents, and we don't track what you do. Your documents remain
151
+ completely and unequivocally private. It's not just a feature;
152
+ it's our foundation.
153
+ </p>
154
+ </div>
155
+ <div class="flex justify-center">
156
+ <div class="relative w-48 h-48">
157
+ <div
158
+ class="absolute inset-0 bg-indigo-500 rounded-full opacity-20 animate-pulse"
159
+ ></div>
160
+ <div
161
+ class="absolute inset-4 bg-indigo-500 rounded-full opacity-30 animate-pulse delay-500"
162
+ ></div>
163
+ <i
164
+ data-lucide="shield-check"
165
+ class="w-48 h-48 text-indigo-400"
166
+ ></i>
167
+ </div>
168
+ </div>
169
+ </div>
170
+ </div>
171
+
172
+ <section id="why-Bentopdf" class="py-16">
173
+ <h2 class="text-3xl md:text-4xl font-bold text-center text-white mb-12">
174
+ <span data-i18n="about.whyBentopdf.title">Why</span>
175
+ <span class="marker-slanted">Bentopdf?</span>
176
+ </h2>
177
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-8 max-w-5xl mx-auto">
178
+ <div class="bg-gray-800 p-6 rounded-lg flex items-start gap-4">
179
+ <i
180
+ data-lucide="zap"
181
+ class="w-10 h-10 text-indigo-400 flex-shrink-0 mt-1"
182
+ ></i>
183
+ <div>
184
+ <h3
185
+ class="text-xl font-bold text-white"
186
+ data-i18n="about.whyBentopdf.speed.title"
187
+ >
188
+ Built for Speed
189
+ </h3>
190
+ <p
191
+ class="text-gray-400 mt-2"
192
+ data-i18n="about.whyBentopdf.speed.description"
193
+ >
194
+ No waiting for uploads or downloads to a server. By processing
195
+ files directly in your browser using modern web technologies
196
+ like WebAssembly, we offer unparalleled speed for all our tools.
197
+ </p>
198
+ </div>
199
+ </div>
200
+ <div class="bg-gray-800 p-6 rounded-lg flex items-start gap-4">
201
+ <i
202
+ data-lucide="badge-dollar-sign"
203
+ class="w-10 h-10 text-indigo-400 flex-shrink-0 mt-1"
204
+ ></i>
205
+ <div>
206
+ <h3
207
+ class="text-xl font-bold text-white"
208
+ data-i18n="about.whyBentopdf.free.title"
209
+ >
210
+ Completely Free
211
+ </h3>
212
+ <p
213
+ class="text-gray-400 mt-2"
214
+ data-i18n="about.whyBentopdf.free.description"
215
+ >
216
+ No trials, no subscriptions, no hidden fees, and no "premium"
217
+ features held hostage. We believe powerful PDF tools should be a
218
+ public utility, not a profit center.
219
+ </p>
220
+ </div>
221
+ </div>
222
+ <div class="bg-gray-800 p-6 rounded-lg flex items-start gap-4">
223
+ <i
224
+ data-lucide="user-plus"
225
+ class="w-10 h-10 text-indigo-400 flex-shrink-0 mt-1"
226
+ ></i>
227
+ <div>
228
+ <h3
229
+ class="text-xl font-bold text-white"
230
+ data-i18n="about.whyBentopdf.noAccount.title"
231
+ >
232
+ No Account Required
233
+ </h3>
234
+ <p
235
+ class="text-gray-400 mt-2"
236
+ data-i18n="about.whyBentopdf.noAccount.description"
237
+ >
238
+ Start using any tool immediately. We don't need your email, a
239
+ password, or any personal information. Your workflow should be
240
+ frictionless and anonymous.
241
+ </p>
242
+ </div>
243
+ </div>
244
+ <div class="bg-gray-800 p-6 rounded-lg flex items-start gap-4">
245
+ <i
246
+ data-lucide="code-2"
247
+ class="w-10 h-10 text-indigo-400 flex-shrink-0 mt-1"
248
+ ></i>
249
+ <div>
250
+ <h3
251
+ class="text-xl font-bold text-white"
252
+ data-i18n="about.whyBentopdf.openSource.title"
253
+ >
254
+ Open Source Spirit
255
+ </h3>
256
+ <p
257
+ class="text-gray-400 mt-2"
258
+ data-i18n="about.whyBentopdf.openSource.description"
259
+ >
260
+ Built with transparency in mind. We leverage incredible
261
+ open-source libraries like PDF-lib and PDF.js, and believe in
262
+ the community-driven effort to make powerful tools accessible to
263
+ everyone.
264
+ </p>
265
+ </div>
266
+ </div>
267
+ </div>
268
+ </section>
269
+
270
+ <div class="section-divider"></div>
271
+
272
+ <section id="cta-section" class="text-center py-16">
273
+ <h2
274
+ class="text-3xl font-bold text-white mb-4"
275
+ data-i18n="about.cta.title"
276
+ >
277
+ Ready to get started?
278
+ </h2>
279
+ <p
280
+ class="text-lg text-gray-400 mb-8 max-w-2xl mx-auto"
281
+ data-i18n="about.cta.description"
282
+ >
283
+ Join thousands of users who trust Bentopdf for their daily document
284
+ needs. Experience the difference that privacy and performance can
285
+ make.
286
+ </p>
287
+ <a
288
+ href="index.html#tools-header"
289
+ class="inline-block px-8 py-3 rounded-full bg-gradient-to-b from-indigo-500 to-indigo-600 text-white font-semibold focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-900 focus:ring-indigo-400 hover:shadow-xl hover:shadow-indigo-500/30 transition-all duration-200 transform hover:-translate-y-1"
290
+ data-i18n="about.cta.button"
291
+ >
292
+ Explore All Tools
293
+ </a>
294
+ </section>
295
+ </div>
296
+
297
+ {{> footer }}
298
+
299
+ <script type="module" src="src/js/utils/lucide-init.ts"></script>
300
+ <script type="module" src="src/version.ts"></script>
301
+ <script type="module" src="src/js/main.ts"></script>
302
+ <script type="module" src="src/js/mobileMenu.ts"></script>
303
+
304
+ <!-- JSON-LD Schema -->
305
+ <script type="application/ld+json">
306
+ {
307
+ "@context": "https://schema.org",
308
+ "@type": "AboutPage",
309
+ "name": "About BentoPDF",
310
+ "description": "Learn about BentoPDF's mission to provide free, privacy-first PDF tools",
311
+ "url": "https://www.bentopdf.com/about"
312
+ }
313
+ </script>
314
+ </body>
315
+ </html>