-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
348 lines (336 loc) · 23.5 KB
/
about.html
File metadata and controls
348 lines (336 loc) · 23.5 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title data-i18n="about.title">About - AddressGen</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
body {
font-family: 'Inter', sans-serif;
}
.dropdown:hover .dropdown-menu {
display: block;
}
</style>
</head>
<body class="bg-gray-50 min-h-screen">
<!-- Navigation Bar -->
<nav class="bg-white shadow-md fixed w-full z-10">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16">
<div class="flex">
<div class="flex-shrink-0 flex items-center">
<span class="text-2xl font-bold text-indigo-600">AddressGen</span>
</div>
<div class="hidden sm:ml-6 sm:flex sm:space-x-8">
<a href="index.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium" data-i18n="nav.home">
Home
</a>
<a href="blog.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium" data-i18n="nav.blog">
Blog
</a>
<a href="faq.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium" data-i18n="nav.faq">
FAQ
</a>
<a href="about.html" class="border-indigo-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium" data-i18n="nav.about">
About
</a>
<a href="feedback.html" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium" data-i18n="nav.feedback">
Feedback
</a>
</div>
</div>
<div class="hidden sm:ml-6 sm:flex sm:items-center">
<!-- Language Selector -->
<div class="ml-3 relative">
<button id="lang-button" class="flex text-sm border-2 border-transparent rounded-full focus:outline-none focus:border-gray-300 transition duration-150 ease-in-out">
<span class="px-2 py-1 rounded-md text-gray-700 bg-gray-100 hover:bg-gray-200">
<i class="fas fa-globe mr-1"></i> <span id="current-lang">English</span>
</span>
</button>
<div id="lang-dropdown" class="hidden origin-top-right absolute right-0 mt-2 w-48 rounded-md shadow-lg py-1 bg-white ring-1 ring-black ring-opacity-5">
<a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100" onclick="changeLanguage('en')">English</a>
<a href="#" class="block px-4 py-2 text-sm text-gray-700 hover:bg-gray-100" onclick="changeLanguage('zh-CN')">简体中文</a>
</div>
</div>
</div>
<div class="-mr-2 flex items-center sm:hidden">
<!-- Mobile menu button -->
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-indigo-500" aria-expanded="false" id="mobile-menu-button">
<span class="sr-only">Open main menu</span>
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu, show/hide based on menu state. -->
<div class="sm:hidden hidden" id="mobile-menu">
<div class="pt-2 pb-3 space-y-1">
<a href="index.html" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Home</a>
<a href="blog.html" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Blog</a>
<a href="faq.html" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">FAQ</a>
<a href="about.html" class="bg-indigo-50 border-indigo-500 text-indigo-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">About</a>
<a href="feedback.html" class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">Feedback</a>
<div class="border-transparent text-gray-500 hover:bg-gray-50 hover:border-gray-300 hover:text-gray-700 block pl-3 pr-4 py-2 border-l-4 text-base font-medium">
<span class="font-medium text-gray-500">Language:</span>
<div class="mt-1 flex space-x-2">
<a href="#" class="text-sm text-gray-700 hover:text-indigo-500" onclick="changeLanguage('en')">English</a>
<a href="#" class="text-sm text-gray-700 hover:text-indigo-500" onclick="changeLanguage('zh-CN')">简体中文</a>
<a href="#" class="text-sm text-gray-700 hover:text-indigo-500" onclick="changeLanguage('zh-TW')">繁體中文</a>
</div>
</div>
</div>
</div>
</nav>
<!-- Main Content -->
<div class="pt-16 pb-12">
<!-- About Header -->
<div class="bg-indigo-700 text-white">
<div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
<div class="text-center">
<h1 class="text-4xl font-extrabold tracking-tight sm:text-5xl lg:text-6xl" data-i18n="about.title">About AddressGen</h1>
<p class="mt-6 text-xl max-w-3xl mx-auto" data-i18n="about.subtitle">Learn about our mission, our team, and why we created the most comprehensive address generation tool.</p>
</div>
</div>
</div>
<!-- Our Story Section -->
<div class="max-w-7xl mx-auto py-16 px-4 sm:px-6 lg:px-8">
<div class="lg:grid lg:grid-cols-2 lg:gap-8 lg:items-center">
<div>
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl" data-i18n="about.our_story">
Our Story
</h2>
<p class="mt-3 max-w-3xl text-lg text-gray-500" data-i18n="about.story.p1">
AddressGen was born out of necessity. As software developers, we frequently needed realistic test data for our projects, but existing solutions were either too limited, too complex, or didn't provide the quality of data we needed.
</p>
<p class="mt-3 max-w-3xl text-lg text-gray-500" data-i18n="about.story.p2">
In 2025, our team of developers and data specialists came together to create a solution that would generate high-quality, realistic address information for multiple countries while maintaining the highest standards of privacy and security.
</p>
<p class="mt-3 max-w-3xl text-lg text-gray-500" data-i18n="about.story.p3">
What started as an internal tool quickly grew into a comprehensive platform used by thousands of developers, testers, and businesses worldwide. Today, AddressGen is the go-to solution for generating realistic address and identity information for testing, development, and educational purposes.
</p>
</div>
<div class="mt-10 lg:mt-0">
<div class="aspect-w-5 aspect-h-3 rounded-lg overflow-hidden shadow-xl">
<img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80" alt="Team collaboration" class="w-full h-full object-center object-cover">
</div>
</div>
</div>
</div>
<!-- Our Mission Section -->
<div class="bg-indigo-50">
<div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
<div class="text-center">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl" data-i18n="about.mission.title">Our Mission</h2>
<p class="mt-4 text-lg text-gray-500 max-w-3xl mx-auto" data-i18n="about.mission.subtitle">
We believe in empowering developers and businesses with tools that make their work easier while protecting privacy and promoting best practices in data handling.
</p>
</div>
<div class="mt-12">
<div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-3">
<div class="pt-6">
<div class="flow-root bg-white rounded-lg px-6 pb-8 shadow-lg">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-indigo-500 rounded-md shadow-lg">
<i class="fas fa-lightbulb text-white text-2xl"></i>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight" data-i18n="about.mission.innovation.title">Innovation</h3>
<p class="mt-5 text-base text-gray-500" data-i18n="about.mission.innovation.desc">
We continuously improve our algorithms and expand our capabilities to provide the most accurate and useful address generation service possible.
</p>
</div>
</div>
</div>
<div class="pt-6">
<div class="flow-root bg-white rounded-lg px-6 pb-8 shadow-lg">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-indigo-500 rounded-md shadow-lg">
<i class="fas fa-shield-alt text-white text-2xl"></i>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight" data-i18n="about.mission.privacy.title">Privacy</h3>
<p class="mt-5 text-base text-gray-500" data-i18n="about.mission.privacy.desc">
We're committed to protecting privacy by providing fictional data that helps developers avoid using real personal information in their work.
</p>
</div>
</div>
</div>
<div class="pt-6">
<div class="flow-root bg-white rounded-lg px-6 pb-8 shadow-lg">
<div class="-mt-6">
<div>
<span class="inline-flex items-center justify-center p-3 bg-indigo-500 rounded-md shadow-lg">
<i class="fas fa-users text-white text-2xl"></i>
</span>
</div>
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight" data-i18n="about.mission.community.title">Community</h3>
<p class="mt-5 text-base text-gray-500" data-i18n="about.mission.community.desc">
We support the developer community by providing tools that make testing and development more efficient and effective.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Testimonials Section -->
<div class="bg-white">
<div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8">
<div class="text-center">
<h2 class="text-3xl font-extrabold text-gray-900 sm:text-4xl" data-i18n="about.testimonials.title">What Our Users Say</h2>
<p class="mt-4 text-lg text-gray-500 max-w-3xl mx-auto" data-i18n="about.testimonials.subtitle">
Don't just take our word for it — hear from some of our satisfied users.
</p>
</div>
<div class="mt-12">
<div class="grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3">
<div class="bg-gray-50 rounded-lg shadow-lg overflow-hidden">
<div class="px-6 py-8">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="User">
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900" data-i18n="about.testimonials.user1.name">Emily R.</h3>
<p class="text-sm text-gray-500" data-i18n="about.testimonials.user1.role">Software Developer</p>
</div>
</div>
<div class="mt-4">
<p class="text-gray-600" data-i18n="about.testimonials.user1.comment">"AddressGen has been a game-changer for our development team. We use it daily to generate test data for our e-commerce platform, and it's saved us countless hours of manual work."</p>
</div>
<div class="mt-4">
<div class="flex items-center">
<div class="flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
<p class="ml-2 text-sm text-gray-500">5.0</p>
</div>
</div>
</div>
</div>
<div class="bg-gray-50 rounded-lg shadow-lg overflow-hidden">
<div class="px-6 py-8">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="User">
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900" data-i18n="about.testimonials.user2.name">Marcus T.</h3>
<p class="text-sm text-gray-500" data-i18n="about.testimonials.user2.role">QA Engineer</p>
</div>
</div>
<div class="mt-4">
<p class="text-gray-600" data-i18n="about.testimonials.user2.comment">"The quality of the generated addresses is impressive. Everything from postal codes to street names follows the correct format for each country, which is essential for our international application testing."</p>
</div>
<div class="mt-4">
<div class="flex items-center">
<div class="flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
</div>
<p class="ml-2 text-sm text-gray-500">5.0</p>
</div>
</div>
</div>
</div>
<div class="bg-gray-50 rounded-lg shadow-lg overflow-hidden">
<div class="px-6 py-8">
<div class="flex items-center">
<div class="flex-shrink-0">
<img class="h-12 w-12 rounded-full" src="https://images.unsplash.com/photo-1517841905240-472988babdf9?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="User">
</div>
<div class="ml-4">
<h3 class="text-lg font-medium text-gray-900" data-i18n="about.testimonials.user3.name">Sophia L.</h3>
<p class="text-sm text-gray-500" data-i18n="about.testimonials.user3.role">Product Manager</p>
</div>
</div>
<div class="mt-4">
<p class="text-gray-600" data-i18n="about.testimonials.user3.comment">"We use AddressGen for our UI prototyping and user testing. Having realistic data makes our demos much more effective and helps stakeholders visualize the final product better."</p>
</div>
<div class="mt-4">
<div class="flex items-center">
<div class="flex">
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="fas fa-star text-yellow-400"></i>
<i class="far fa-star text-yellow-400"></i>
</div>
<p class="ml-2 text-sm text-gray-500">4.0</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Contact Section -->
<div class="bg-indigo-700">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between">
<h2 class="text-3xl font-extrabold tracking-tight text-white sm:text-4xl">
<span class="block" data-i18n="about.contact.title">Ready to get started?</span>
<span class="block text-indigo-200" data-i18n="about.contact.subtitle">Try AddressGen today.</span>
</h2>
<div class="mt-8 flex lg:mt-0 lg:flex-shrink-0">
<div class="inline-flex rounded-md shadow">
<a href="index.html" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-indigo-600 bg-white hover:bg-indigo-50" data-i18n="about.contact.get_started">
Get started
</a>
</div>
<div class="ml-3 inline-flex rounded-md shadow">
<a href="feedback.html" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-indigo-600 bg-opacity-60 hover:bg-opacity-70" data-i18n="about.contact.contact_us">
Contact us
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-white">
<div class="max-w-7xl mx-auto py-12 px-4 overflow-hidden sm:px-6 lg:px-8">
<nav class="-mx-5 -my-2 flex flex-wrap justify-center" aria-label="Footer">
<div class="px-5 py-2">
<a href="index.html" class="text-base text-gray-500 hover:text-gray-900" data-i18n="footer.nav.home">Home</a>
</div>
<div class="px-5 py-2">
<a href="blog.html" class="text-base text-gray-500 hover:text-gray-900" data-i18n="footer.nav.blog">Blog</a>
</div>
<div class="px-5 py-2">
<a href="faq.html" class="text-base text-gray-500 hover:text-gray-900" data-i18n="footer.nav.faq">FAQ</a>
</div>
<div class="px-5 py-2">
<a href="about.html" class="text-base text-gray-500 hover:text-gray-900" data-i18n="footer.nav.about">About</a>
</div>
<div class="px-5 py-2">
<a href="feedback.html" class="text-base text-gray-500 hover:text-gray-900" data-i18n="footer.nav.feedback">Feedback</a>
</div>
</nav>
<p class="mt-8 text-center text-base text-gray-400" data-i18n="footer.copyright">© 2023 AddressGen. All rights reserved.</p>
</div>
</footer>
<!-- JavaScript -->
<script src="js/i18n.js"></script>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const mobileMenu = document.getElementById('mobile-menu');
mobileMenu.classList.toggle('hidden');
});
</script>
</body>
</html>