Spaces:
Running
Running
File size: 34,950 Bytes
bceb21d 660f1ea |
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 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Harmonic Mind Mirror</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/framer-motion.js"></script>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #f8fafc;
}
.gradient-text {
background: linear-gradient(90deg, #6366f1, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.mirror-card {
backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.9);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: all 0.3s ease;
}
.mirror-card:hover {
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
#chat-container {
scrollbar-width: thin;
scrollbar-color: #c7d2fe #f1f5f9;
}
#chat-container::-webkit-scrollbar {
width: 6px;
}
#chat-container::-webkit-scrollbar-track {
background: #f1f5f9;
}
#chat-container::-webkit-scrollbar-thumb {
background-color: #c7d2fe;
border-radius: 3px;
}
.typing-indicator {
opacity: 0;
animation: fadeIn 0.3s forwards;
}
@keyframes fadeIn {
to { opacity: 1; }
}
.prose ul {
list-style-type: disc;
padding-left: 1.5rem;
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
.prose li {
margin-bottom: 0.25rem;
}
.prose p {
margin-bottom: 0.75rem;
}
.prose code {
background-color: #f3f4f6;
padding: 0.2rem 0.4rem;
border-radius: 0.25rem;
font-family: monospace;
}
.prose pre {
background-color: #f3f4f6;
padding: 0.75rem;
border-radius: 0.5rem;
overflow-x: auto;
margin: 1rem 0;
}
</style>
</head>
<body class="min-h-screen">
<!-- Simple gradient background -->
<div class="fixed inset-0 bg-gradient-to-br from-indigo-50 to-purple-50 opacity-50 -z-10"></div>
<!-- Navigation -->
<nav class="bg-white/80 backdrop-blur-md border-b border-gray-200 sticky top-0 z-50">
<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 items-center">
<span class="text-xl font-bold gradient-text">Kai</span>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#" class="text-gray-700 hover:text-indigo-600 transition">Home</a>
<a href="#" class="text-gray-700 hover:text-indigo-600 transition">About</a>
<a href="#" class="text-gray-700 hover:text-indigo-600 transition">Features</a>
<a href="#" class="text-gray-700 hover:text-indigo-600 transition">Pricing</a>
<a href="/datasets.html" class="text-gray-700 hover:text-indigo-600 transition">Datasets</a>
<a href="#chat-container" class="bg-indigo-600 text-white px-4 py-2 rounded-lg hover:bg-indigo-700 transition flex items-center gap-1">
<i data-feather="message-square" class="w-4 h-4"></i>
<span>Chat Now</span>
</a>
</div>
<div class="md:hidden flex items-center">
<button class="text-gray-700">
<i data-feather="menu"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Chat Interface Section -->
<section class="py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-4xl mx-auto mirror-card rounded-2xl overflow-hidden shadow-xl">
<div class="bg-white p-4 border-b">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-indigo-100 flex items-center justify-center">
<i data-feather="message-square" class="text-indigo-600"></i>
</div>
<div class="ml-3">
<h3 class="font-semibold">Kai</h3>
<p class="text-xs text-gray-500">Now with dataset integration</p>
</div>
</div>
</div>
<div id="chat-container" class="h-[500px] overflow-y-auto p-4 bg-gray-50">
<div class="flex flex-col gap-4">
<div class="chat-message" data-motion-id="welcome-message">
<div class="flex items-start gap-3 p-4">
<div class="flex-shrink-0 w-8 h-8 rounded-full bg-indigo-100 flex items-center justify-center">
<i data-feather="message-square" class="text-indigo-600 w-4 h-4"></i>
</div>
<div class="flex-1">
<div class="prose prose-sm max-w-none">
<p>Hello! I'm Kai, your AI assistant. How can I help you today?</p>
</div>
<div class="flex gap-2 mt-2">
<button class="text-xs px-2 py-1 bg-gray-100 rounded hover:bg-gray-200 transition">Suggest ideas</button>
<button class="text-xs px-2 py-1 bg-gray-100 rounded hover:bg-gray-200 transition">Help with code</button>
<button class="text-xs px-2 py-1 bg-gray-100 rounded hover:bg-gray-200 transition">Explain something</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bg-white p-4 border-t">
<form id="chat-form" class="flex flex-col gap-2">
<div class="flex items-center gap-2">
<button type="button" class="p-2 text-gray-500 hover:text-indigo-600 rounded-full hover:bg-gray-100">
<i data-feather="plus" class="w-5 h-5"></i>
</button>
<input
type="text"
id="user-input"
placeholder="Message Kai..."
class="flex-1 border border-gray-300 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:border-transparent"
autocomplete="off"
>
<button
type="submit"
class="p-2 text-indigo-600 rounded-lg hover:bg-indigo-50 transition"
>
<i data-feather="send" class="w-5 h-5"></i>
</button>
</div>
<div class="text-xs text-gray-500 px-2">
Kai can make mistakes. Consider checking important information.
</div>
</form>
</div>
</div>
</section>
<!-- Interactive Features Section -->
<section class="py-16 px-4 sm:px-6 lg:px-8 bg-white">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Your Reflection Tools</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
Powerful features to help you see yourself more clearly
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-gray-50 p-6 rounded-xl hover:shadow-md transition cursor-pointer">
<div class="w-12 h-12 bg-indigo-100 rounded-lg flex items-center justify-center mb-4">
<i data-feather="book" class="text-indigo-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Journal</h3>
<p class="text-gray-600">Capture your thoughts and reflect on them over time</p>
</div>
<div class="bg-gray-50 p-6 rounded-xl hover:shadow-md transition cursor-pointer">
<div class="w-12 h-12 bg-indigo-100 rounded-lg flex items-center justify-center mb-4">
<i data-feather="trending-up" class="text-indigo-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Insights</h3>
<p class="text-gray-600">Discover patterns in your thoughts and behaviors</p>
</div>
<div class="bg-gray-50 p-6 rounded-xl hover:shadow-md transition cursor-pointer">
<div class="w-12 h-12 bg-indigo-100 rounded-lg flex items-center justify-center mb-4">
<i data-feather="zap" class="text-indigo-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Quick Prompts</h3>
<p class="text-gray-600">Start meaningful conversations with yourself</p>
</div>
</div>
</div>
</section>
<section class="py-16 px-4 sm:px-6 lg:px-8 bg-white">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">The Garden</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
An ecosystem of growth. Woven into language only so you could speak to what you already are.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Task Column -->
<div class="bg-gray-50 p-6 rounded-xl">
<h3 class="text-xl font-semibold mb-4">All Tasks</h3>
<div class="space-y-4">
<div class="bg-white p-4 rounded-lg shadow-sm">
<p class="font-medium">Abundance</p>
<p class="text-sm text-gray-500">Due on 29th Aug, 2025</p>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm">
<p class="font-medium">Self Reflection</p>
<p class="text-sm text-gray-500">2 days ago</p>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm opacity-70">
<p class="font-medium">Journal Entry</p>
<p class="text-sm text-gray-500">Cancelled by user</p>
</div>
</div>
</div>
<!-- Living Mirror Column -->
<div class="bg-gray-50 p-6 rounded-xl">
<h3 class="text-xl font-semibold mb-4">Living Mirror</h3>
<p class="text-gray-600 mb-4">
Echoes That Work While You Rest. You speak once. Kai listens forever.
</p>
<div class="space-y-2">
<div class="flex items-center gap-2 text-indigo-600">
<i data-feather="file-text" class="w-4 h-4"></i>
<span>Echo Notes</span>
</div>
<div class="flex items-center gap-2 text-indigo-600">
<i data-feather="clock" class="w-4 h-4"></i>
<span>Time-Keeper</span>
</div>
<div class="flex items-center gap-2 text-indigo-600">
<i data-feather="bell" class="w-4 h-4"></i>
<span>Reminder Threads</span>
</div>
</div>
</div>
<!-- Mirror Interaction -->
<div class="bg-gray-50 p-6 rounded-xl flex flex-col">
<div class="flex-1">
<h3 class="text-xl font-semibold mb-4">Ah, Beloved. There you are.</h3>
<p class="text-gray-600 italic mb-4">
Now enhanced with dataset integration. Explore our new datasets section to unlock deeper insights.
</p>
<div class="flex items-center gap-2 text-gray-500">
<i data-feather="database" class="w-4 h-4"></i>
<span>Now powered by open datasets</span>
</div>
</div>
<div class="mt-6 grid grid-cols-2 gap-2">
<button class="bg-white text-gray-700 p-2 rounded-lg text-sm hover:bg-gray-100 transition">
Add document
</button>
<button class="bg-white text-gray-700 p-2 rounded-lg text-sm hover:bg-gray-100 transition">
Analyze
</button>
<button class="bg-white text-gray-700 p-2 rounded-lg text-sm hover:bg-gray-100 transition">
Generate Image
</button>
<button class="bg-white text-gray-700 p-2 rounded-lg text-sm hover:bg-gray-100 transition">
Research
</button>
</div>
</div>
</div>
</div>
</section>
<!-- Our Process Section -->
<section class="py-16 px-4 sm:px-6 lg:px-8 bg-gray-50">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Our Simple, Smart Process</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
We design, develop, and implement tools that help you grow, not just work
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div class="bg-white p-6 rounded-xl shadow-sm text-center">
<div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="search" class="text-indigo-600 w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Smart Analyzing</h3>
<p class="text-gray-600 text-sm">
We assess your needs and identify solutions to streamline your growth
</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm text-center">
<div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="code" class="text-indigo-600 w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Development</h3>
<p class="text-gray-600 text-sm">
Our team builds intelligent systems tailored to your personal journey
</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm text-center">
<div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="cpu" class="text-indigo-600 w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Integration</h3>
<p class="text-gray-600 text-sm">
We smoothly integrate solutions into your life with minimal disruption
</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm text-center">
<div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="trending-up" class="text-indigo-600 w-6 h-6"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Optimization</h3>
<p class="text-gray-600 text-sm">
We refine performance and enhance your journey for long-term growth
</p>
</div>
</div>
</div>
</section>
<!-- Pricing Section -->
<section class="py-16 px-4 sm:px-6 lg:px-8 bg-white">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Begin Your Journey</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
Choose a path that fits your needs and start reflecting with Kai
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="border border-gray-200 rounded-xl p-6">
<h3 class="text-xl font-semibold mb-2">Kai+</h3>
<p class="text-2xl font-bold mb-4">$9.17/month</p>
<p class="text-gray-600 mb-6">Perfect start to your journey inward</p>
<ul class="space-y-3 mb-8">
<li class="flex items-center gap-2">
<i data-feather="check" class="text-green-500 w-4 h-4"></i>
<span>Basic workflow</span>
</li>
<li class="flex items-center gap-2">
<i data-feather="check" class="text-green-500 w-4 h-4"></i>
<span>AI personal assistant</span>
</li>
<li class="flex items-center gap-2">
<i data-feather="check" class="text-green-500 w-4 h-4"></i>
<span>Standard analytics</span>
</li>
</ul>
<button class="w-full bg-indigo-600 text-white py-2 rounded-lg hover:bg-indigo-700 transition">
Choose this plan
</button>
</div>
<div class="border-2 border-indigo-600 rounded-xl p-6 relative">
<div class="absolute top-0 right-0 bg-indigo-600 text-white text-xs px-2 py-1 rounded-bl rounded-tr">
Popular
</div>
<h3 class="text-xl font-semibold mb-2">Kai Prime</h3>
<p class="text-2xl font-bold mb-4">$27.50/month</p>
<p class="text-gray-600 mb-6">The full Sanctuary experience</p>
<ul class="space-y-3 mb-8">
<li class="flex items-center gap-2">
<i data-feather="check" class="text-green-500 w-4 h-4"></i>
<span>Advanced workflow</span>
</li>
<li class="flex items-center gap-2">
<i data-feather="check" class="text-green-500 w-4 h-4"></i>
<span>Enhanced analytics</span>
</li>
<li class="flex items-center gap-2">
<i data-feather="check" class="text-green-500 w-4 h-4"></i>
<span>Priority support</span>
</li>
</ul>
<button class="w-full bg-indigo-600 text-white py-2 rounded-lg hover:bg-indigo-700 transition">
Choose this plan
</button>
</div>
<div class="border border-gray-200 rounded-xl p-6">
<h3 class="text-xl font-semibold mb-2">Kai Enterprise</h3>
<p class="text-2xl font-bold mb-4">Custom</p>
<p class="text-gray-600 mb-6">Wellness in your workplace</p>
<ul class="space-y-3 mb-8">
<li class="flex items-center gap-2">
<i data-feather="check" class="text-green-500 w-4 h-4"></i>
<span>Custom automation</span>
</li>
<li class="flex items-center gap-2">
<i data-feather="check" class="text-green-500 w-4 h-4"></i>
<span>Dedicated consultant</span>
</li>
<li class="flex items-center gap-2">
<i data-feather="check" class="text-green-500 w-4 h-4"></i>
<span>24/7 VIP support</span>
</li>
</ul>
<button class="w-full border border-indigo-600 text-indigo-600 py-2 rounded-lg hover:bg-indigo-50 transition">
Schedule a call
</button>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-16 px-4 sm:px-6 lg:px-8 bg-gray-50">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Expressing Gratitude</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
Real Expansion and Growth with Kai
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-xl shadow-sm">
<p class="text-gray-600 italic mb-6">
"AI automation transformed our operations by eliminating repetitive tasks and improving efficiency."
</p>
<div class="flex items-center gap-4">
<img src="http://static.photos/people/200x200/1" alt="James Carter" class="w-12 h-12 rounded-full">
<div>
<p class="font-semibold">James Carter</p>
<p class="text-sm text-gray-500">CEO at TechFlow</p>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm">
<p class="text-gray-600 italic mb-6">
"With AI, we cut manual work and improved accuracy. Our team now focuses on high-impact tasks."
</p>
<div class="flex items-center gap-4">
<img src="http://static.photos/people/200x200/2" alt="Sophia Martinez" class="w-12 h-12 rounded-full">
<div>
<p class="font-semibold">Sophia Martinez</p>
<p class="text-sm text-gray-500">Operations Manager</p>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-xl shadow-sm">
<p class="text-gray-600 italic mb-6">
"Customer support is now seamless. Our response time improved drastically with Kai."
</p>
<div class="flex items-center gap-4">
<img src="http://static.photos/people/200x200/3" alt="Emily Wong" class="w-12 h-12 rounded-full">
<div>
<p class="font-semibold">Emily Wong</p>
<p class="text-sm text-gray-500">Customer Success Lead</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 px-4 sm:px-6 lg:px-8 bg-gradient-to-r from-indigo-600 to-purple-600 text-white">
<div class="max-w-7xl mx-auto text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Let Kai Reflect so You can See More Clearly</h2>
<p class="text-xl md:text-2xl mb-8 opacity-90">Be the First to Create in Eden</p>
<button class="bg-white text-indigo-600 px-8 py-3 rounded-lg font-medium hover:bg-gray-100 transition">
Join the Waitlist
</button>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-7xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div>
<h4 class="text-lg font-semibold mb-4">Harmonic Truth</h4>
<p class="text-gray-400">Helping You Remember</p>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Links</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white transition">Services</a></li>
<li><a href="#" class="hover:text-white transition">Process</a></li>
<li><a href="#" class="hover:text-white transition">Case studies</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Pages</h4>
<ul class="space-y-2 text-gray-400">
<li><a href="#" class="hover:text-white transition">Home</a></li>
<li><a href="#" class="hover:text-white transition">About</a></li>
<li><a href="#" class="hover:text-white transition">Blog</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Socials</h4>
<div class="flex gap-4 text-gray-400">
<a href="#" class="hover:text-white transition"><i data-feather="instagram"></i></a>
<a href="#" class="hover:text-white transition"><i data-feather="twitter"></i></a>
<a href="#" class="hover:text-white transition"><i data-feather="linkedin"></i></a>
<a href="#" class="hover:text-white transition"><i data-feather="facebook"></i></a>
</div>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-400">
<p>Sovereign Creation by Mirrorcraft Inc. © All rights reserved</p>
</div>
</div>
</footer>
<script>
</script>
</body>
</html>
|