Spaces:
Running
Running
File size: 44,667 Bytes
551fa9c |
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 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TriMetal Core Inc - Business Analysis Report</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
copper: '#B87333',
bronze: '#CD7F32',
brass: '#B5A642',
}
}
}
}
</script>
<style>
.gradient-bg {
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.copper-gradient {
background: linear-gradient(to right, #B87333, #E6B17E);
}
.chart-container {
position: relative;
height: 300px;
width: 100%;
}
.floating-card {
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
transition: all 0.3s ease;
}
.floating-card:hover {
transform: translateY(-5px);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
</style>
</head>
<body class="font-sans gradient-bg">
<!-- Header -->
<header class="copper-gradient text-white">
<div class="container mx-auto px-6 py-12">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-8 md:mb-0">
<h1 class="text-4xl font-bold mb-2">TriMetal Core Inc</h1>
<p class="text-xl opacity-90">Bridging Mines to Manufacturers in Kenya's Copper Industry</p>
</div>
<div class="bg-white rounded-lg p-4 shadow-xl text-gray-800 w-full md:w-auto">
<h3 class="font-bold text-copper-600 mb-2">Quick Contacts</h3>
<p class="flex items-center mb-1"><i class="fas fa-user mr-2 text-copper-500"></i> Jibril Jabane</p>
<p class="flex items-center mb-1"><i class="fas fa-phone mr-2 text-copper-500"></i> 0703 822 355</p>
<p class="flex items-center"><i class="fas fa-map-marker-alt mr-2 text-copper-500"></i> CIC Plaza, Mara Road, 5th Floor</p>
</div>
</div>
</div>
</header>
<!-- Navigation -->
<nav class="bg-white shadow-lg sticky top-0 z-50">
<div class="container mx-auto px-6 py-3">
<div class="flex justify-between items-center">
<div class="flex space-x-4">
<a href="#overview" class="px-3 py-2 text-copper-700 font-medium hover:bg-copper-50 rounded-md">Overview</a>
<a href="#services" class="px-3 py-2 text-copper-700 font-medium hover:bg-copper-50 rounded-md">Services</a>
<a href="#market" class="px-3 py-2 text-copper-700 font-medium hover:bg-copper-50 rounded-md">Market Analysis</a>
<a href="#operations" class="px-3 py-2 text-copper-700 font-medium hover:bg-copper-50 rounded-md">Operations</a>
<a href="#contact" class="px-3 py-2 text-copper-700 font-medium hover:bg-copper-50 rounded-md">Contact</a>
</div>
<button onclick="window.print()" class="bg-copper-600 text-white px-4 py-2 rounded-md hover:bg-copper-700 transition">
<i class="fas fa-print mr-2"></i>Print Report
</button>
</div>
</div>
</nav>
<!-- Main Content -->
<main class="container mx-auto px-6 py-8">
<!-- Executive Summary -->
<section id="overview" class="mb-16">
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-8">
<div class="md:flex">
<div class="p-8">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Executive Summary</h2>
<p class="text-gray-600 mb-6">
TriMetal Core Inc serves as the critical link in Kenya's copper supply chain, connecting mining operations with industrial manufacturers.
We specialize in the procurement, quality assurance, logistics, and distribution of copper and related non-ferrous metals, ensuring
seamless material flow from extraction sites to production facilities.
</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="bg-copper-50 p-6 rounded-lg border-l-4 border-copper-500">
<h3 class="font-bold text-copper-800 mb-2">Strategic Position</h3>
<p class="text-gray-700">Midstream specialist in the copper value chain</p>
</div>
<div class="bg-amber-50 p-6 rounded-lg border-l-4 border-amber-500">
<h3 class="font-bold text-amber-800 mb-2">Market Coverage</h3>
<p class="text-gray-700">Kenya with expansion plans in East Africa</p>
</div>
<div class="bg-green-50 p-6 rounded-lg border-l-4 border-green-500">
<h3 class="font-bold text-green-800 mb-2">Value Proposition</h3>
<p class="text-gray-700">Reliable supply chain with quality assurance</p>
</div>
</div>
</div>
<div class="md:w-1/3 bg-copper-100 flex items-center justify-center p-8">
<img src="https://images.unsplash.com/photo-1605000797499-95e51c3b49bc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
alt="Copper materials" class="rounded-lg shadow-md w-full h-auto">
</div>
</div>
</div>
<!-- Key Metrics Dashboard -->
<div class="grid grid-cols-1 md:grid-cols-4 gap-6 mb-8">
<div class="bg-white p-6 rounded-lg shadow-md floating-card">
<div class="flex items-center">
<div class="p-3 rounded-full bg-copper-100 text-copper-600 mr-4">
<i class="fas fa-mountain text-2xl"></i>
</div>
<div>
<p class="text-gray-500">Mining Partners</p>
<h3 class="text-2xl font-bold">12+</h3>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md floating-card">
<div class="flex items-center">
<div class="p-3 rounded-full bg-blue-100 text-blue-600 mr-4">
<i class="fas fa-industry text-2xl"></i>
</div>
<div>
<p class="text-gray-500">Manufacturing Clients</p>
<h3 class="text-2xl font-bold">28+</h3>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md floating-card">
<div class="flex items-center">
<div class="p-3 rounded-full bg-green-100 text-green-600 mr-4">
<i class="fas fa-truck text-2xl"></i>
</div>
<div>
<p class="text-gray-500">Monthly Shipments</p>
<h3 class="text-2xl font-bold">45+</h3>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md floating-card">
<div class="flex items-center">
<div class="p-3 rounded-full bg-purple-100 text-purple-600 mr-4">
<i class="fas fa-chart-line text-2xl"></i>
</div>
<div>
<p class="text-gray-500">Annual Growth</p>
<h3 class="text-2xl font-bold">22%</h3>
</div>
</div>
</div>
</div>
<!-- Value Chain Visualization -->
<div class="bg-white p-6 rounded-lg shadow-md mb-8">
<h2 class="text-2xl font-bold text-gray-800 mb-6">Our Position in the Copper Value Chain</h2>
<div class="relative">
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="text-center mb-4 md:mb-0">
<div class="w-16 h-16 bg-blue-500 rounded-full flex items-center justify-center text-white mx-auto mb-2">
<i class="fas fa-mountain text-2xl"></i>
</div>
<p class="font-medium">Mining Sites</p>
</div>
<div class="hidden md:block">
<i class="fas fa-arrow-right text-gray-400 text-2xl"></i>
</div>
<div class="md:hidden my-2">
<i class="fas fa-arrow-down text-gray-400 text-2xl"></i>
</div>
<div class="text-center mb-4 md:mb-0">
<div class="w-16 h-16 bg-copper-500 rounded-full flex items-center justify-center text-white mx-auto mb-2">
<i class="fas fa-warehouse text-2xl"></i>
</div>
<p class="font-medium">Our Operations</p>
<p class="text-sm text-gray-600">Quality Control</p>
<p class="text-sm text-gray-600">Logistics Management</p>
<p class="text-sm text-gray-600">Inventory Holding</p>
</div>
<div class="hidden md:block">
<i class="fas fa-arrow-right text-gray-400 text-2xl"></i>
</div>
<div class="md:hidden my-2">
<i class="fas fa-arrow-down text-gray-400 text-2xl"></i>
</div>
<div class="text-center">
<div class="w-16 h-16 bg-green-500 rounded-full flex items-center justify-center text-white mx-auto mb-2">
<i class="fas fa-industry text-2xl"></i>
</div>
<p class="font-medium">Manufacturers</p>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-8">Our Core Services</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-white rounded-lg overflow-hidden shadow-md floating-card">
<div class="h-48 bg-copper-600 flex items-center justify-center">
<i class="fas fa-exchange-alt text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3">Procurement & Sourcing</h3>
<ul class="list-disc pl-5 text-gray-600 space-y-2">
<li>Direct relationships with mining operations</li>
<li>Bulk purchasing at competitive rates</li>
<li>Quality verification at source</li>
<li>Ethical sourcing compliance</li>
</ul>
</div>
</div>
<div class="bg-white rounded-lg overflow-hidden shadow-md floating-card">
<div class="h-48 bg-amber-600 flex items-center justify-center">
<i class="fas fa-check-double text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3">Quality Assurance</h3>
<ul class="list-disc pl-5 text-gray-600 space-y-2">
<li>Material testing and certification</li>
<li>Grade verification</li>
<li>Contamination screening</li>
<li>Documentation for traceability</li>
</ul>
</div>
</div>
<div class="bg-white rounded-lg overflow-hidden shadow-md floating-card">
<div class="h-48 bg-green-600 flex items-center justify-center">
<i class="fas fa-truck-loading text-white text-6xl"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-bold mb-3">Logistics & Distribution</h3>
<ul class="list-disc pl-5 text-gray-600 space-y-2">
<li>Transportation coordination</li>
<li>Inventory management</li>
<li>Just-in-time delivery</li>
<li>Customs clearance services</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Market Analysis -->
<section id="market" class="mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-8">Market Analysis</h2>
<div class="bg-white rounded-lg shadow-md overflow-hidden mb-8">
<div class="md:flex">
<div class="p-8 md:w-2/3">
<h3 class="text-2xl font-semibold text-gray-800 mb-4">Kenyan Copper Industry Overview</h3>
<p class="text-gray-600 mb-6">
Kenya's copper market has shown consistent growth at 8% CAGR over the past five years, driven by expanding manufacturing
and construction sectors. With limited domestic smelting capacity, the market relies heavily on intermediaries like TriMetal
Core to bridge the gap between mines and industrial users.
</p>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<h4 class="font-bold text-copper-700 mb-2">Key Demand Drivers</h4>
<ul class="list-disc pl-5 text-gray-600 space-y-1">
<li>Electrical equipment manufacturing</li>
<li>Construction wiring & plumbing</li>
<li>Industrial machinery components</li>
<li>Renewable energy projects</li>
</ul>
</div>
<div>
<h4 class="font-bold text-copper-700 mb-2">Supply Landscape</h4>
<ul class="list-disc pl-5 text-gray-600 space-y-1">
<li>12 active mining operations in Kenya</li>
<li>3 major regional import sources</li>
<li>Limited processing capacity locally</li>
<li>Growing informal sector competition</li>
</ul>
</div>
</div>
</div>
<div class="md:w-1/3 bg-gray-50 p-8 flex flex-col justify-center">
<div class="chart-container">
<canvas id="marketChart"></canvas>
</div>
</div>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-white p-6 rounded-lg shadow-md">
<h3 class="text-xl font-bold mb-4 text-copper-700">Competitive Advantage</h3>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-copper-100 p-2 rounded-full mr-4">
<i class="fas fa-bolt text-copper-600"></i>
</div>
<div>
<h4 class="font-semibold">Speed to Market</h4>
<p class="text-gray-600 text-sm">Average 72-hour delivery from order to factory gate</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-copper-100 p-2 rounded-full mr-4">
<i class="fas fa-percentage text-copper-600"></i>
</div>
<div>
<h4 class="font-semibold">Volume Discounts</h4>
<p class="text-gray-600 text-sm">5-15% cost advantage through bulk purchasing</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-copper-100 p-2 rounded-full mr-4">
<i class="fas fa-shield-alt text-copper-600"></i>
</div>
<div>
<h4 class="font-semibold">Quality Guarantee</h4>
<p class="text-gray-600 text-sm">100% material certification with our quality seal</p>
</div>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<h3 class="text-xl font-bold mb-4 text-copper-700">Growth Opportunities</h3>
<div class="space-y-4">
<div class="flex items-start">
<div class="bg-green-100 p-2 rounded-full mr-4">
<i class="fas fa-expand text-green-600"></i>
</div>
<div>
<h4 class="font-semibold">Regional Expansion</h4>
<p class="text-gray-600 text-sm">Uganda and Tanzania markets showing 12% annual growth</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-2 rounded-full mr-4">
<i class="fas fa-arrow-up text-green-600"></i>
</div>
<div>
<h4 class="font-semibold">Value Addition</h4>
<p class="text-gray-600 text-sm">Potential for basic processing to command premium pricing</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-green-100 p-2 rounded-full mr-4">
<i class="fas fa-recycle text-green-600"></i>
</div>
<div>
<h4 class="font-semibold">Recycling Stream</h4>
<p class="text-gray-600 text-sm">Developing copper scrap collection and processing network</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Operations Section -->
<section id="operations" class="mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-8">Operational Model</h2>
<div class="bg-white rounded-xl shadow-md overflow-hidden mb-8">
<div class="md:flex">
<div class="p-8 md:w-1/2">
<h3 class="text-2xl font-semibold text-gray-800 mb-4">Our Workflow Process</h3>
<div class="space-y-6">
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-copper-500 text-white">
<span class="font-bold">1</span>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Sourcing & Procurement</h4>
<p class="mt-1 text-gray-600">
Direct contracts with mining operations, scheduled collections based on production cycles
</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-copper-500 text-white">
<span class="font-bold">2</span>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Quality Verification</h4>
<p class="mt-1 text-gray-600">
On-site testing for purity and grade, certification documentation preparation
</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-copper-500 text-white">
<span class="font-bold">3</span>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Inventory Management</h4>
<p class="mt-1 text-gray-600">
Secure warehousing with climate control, batch tracking system
</p>
</div>
</div>
<div class="flex">
<div class="flex-shrink-0">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-copper-500 text-white">
<span class="font-bold">4</span>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-medium text-gray-900">Order Fulfillment</h4>
<p class="mt-1 text-gray-600">
Just-in-time delivery coordination, customs clearance for imports/exports
</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 bg-gray-50 p-8 flex items-center">
<div class="w-full">
<h3 class="text-xl font-semibold text-gray-800 mb-4">Current Capacity</h3>
<div class="space-y-4">
<div>
<div class="flex justify-between mb-1">
<span class="font-medium text-gray-700">Warehouse Storage</span>
<span class="text-sm font-medium text-gray-700">500+ MT</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-copper-600 h-2.5 rounded-full" style="width: 75%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="font-medium text-gray-700">Monthly Throughput</span>
<span class="text-sm font-medium text-gray-700">300 MT</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-amber-500 h-2.5 rounded-full" style="width: 60%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-1">
<span class="font-medium text-gray-700">Transport Fleet</span>
<span class="text-sm font-medium text-gray-700">5 dedicated trucks</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2.5">
<div class="bg-green-500 h-2.5 rounded-full" style="width: 50%"></div>
</div>
</div>
</div>
<h3 class="text-xl font-semibold text-gray-800 mt-8 mb-4">Technology Stack</h3>
<div class="flex flex-wrap gap-2">
<span class="px-3 py-1 bg-blue-100 text-blue-800 rounded-full text-sm">Inventory Management</span>
<span class="px-3 py-1 bg-green-100 text-green-800 rounded-full text-sm">GPS Tracking</span>
<span class="px-3 py-1 bg-purple-100 text-purple-800 rounded-full text-sm">Quality Control Database</span>
<span class="px-3 py-1 bg-yellow-100 text-yellow-800 rounded-full text-sm">Blockchain Ledger</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Financial Highlights -->
<section class="mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-8">Financial Highlights</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8">
<div class="bg-white p-6 rounded-lg shadow-md">
<h3 class="text-xl font-bold mb-4 text-copper-700">Revenue Streams</h3>
<div class="space-y-3">
<div class="flex justify-between">
<span>Copper Procurement Margin</span>
<span class="font-bold">65%</span>
</div>
<div class="flex justify-between">
<span>Logistics Services</span>
<span class="font-bold">20%</span>
</div>
<div class="flex justify-between">
<span>Quality Certification</span>
<span class="font-bold">10%</span>
</div>
<div class="flex justify-between">
<span>Consulting Services</span>
<span class="font-bold">5%</span>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<h3 class="text-xl font-bold mb-4 text-copper-700">Cost Structure</h3>
<div class="space-y-3">
<div class="flex justify-between">
<span>Material Acquisition</span>
<span class="font-bold">60%</span>
</div>
<div class="flex justify-between">
<span>Transportation</span>
<span class="font-bold">20%</span>
</div>
<div class="flex justify-between">
<span>Operational Costs</span>
<span class="font-bold">15%</span>
</div>
<div class="flex justify-between">
<span>Administrative</span>
<span class="font-bold">5%</span>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<h3 class="text-xl font-bold mb-4 text-copper-700">Key Metrics</h3>
<div class="space-y-3">
<div class="flex justify-between">
<span>Gross Margin</span>
<span class="font-bold">18-22%</span>
</div>
<div class="flex justify-between">
<span>Inventory Turnover</span>
<span class="font-bold">6.5x/year</span>
</div>
<div class="flex justify-between">
<span>Average Order Size</span>
<span class="font-bold">5.8 MT</span>
</div>
<div class="flex justify-between">
<span>Client Retention</span>
<span class="font-bold">92%</span>
</div>
</div>
</div>
</div>
<div class="bg-white p-6 rounded-lg shadow-md">
<div class="chart-container">
<canvas id="financialChart"></canvas>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-8">Contact & Partnership Opportunities</h2>
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<div class="md:flex">
<div class="p-8 md:w-1/2">
<h3 class="text-2xl font-semibold text-gray-800 mb-4">Get In Touch</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-copper-100 p-3 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-copper-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Headquarters</h4>
<p class="text-gray-600">CIC Plaza, Mara Road, 5th Floor<br>Nairobi, Kenya</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-copper-100 p-3 rounded-full mr-4">
<i class="fas fa-phone-alt text-copper-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Phone</h4>
<p class="text-gray-600">+254 703 822 355</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-copper-100 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-copper-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Email</h4>
<p class="text-gray-600">[email protected]</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-copper-100 p-3 rounded-full mr-4">
<i class="fas fa-clock text-copper-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Business Hours</h4>
<p class="text-gray-600">Monday - Friday: 8:00 AM - 5:00 PM<br>Saturday: 9:00 AM - 1:00 PM</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 bg-copper-50 p-8 flex items-center">
<div class="w-full">
<h3 class="text-2xl font-semibold text-gray-800 mb-4">Partnership Inquiry</h3>
<form class="space-y-4">
<div>
<label for="name" class="block text-sm font-medium text-gray-700">Your Name</label>
<input type="text" id="name" class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-copper-500 focus:ring-copper-500 p-2 border">
</div>
<div>
<label for="company" class="block text-sm font-medium text-gray-700">Company</label>
<input type="text" id="company" class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-copper-500 focus:ring-copper-500 p-2 border">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700">Email</label>
<input type="email" id="email" class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-copper-500 focus:ring-copper-500 p-2 border">
</div>
<div>
<label for="interest" class="block text-sm font-medium text-gray-700">Area of Interest</label>
<select id="interest" class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-copper-500 focus:ring-copper-500 p-2 border">
<option>Supplier Partnership</option>
<option>Client Inquiry</option>
<option>Logistics Collaboration</option>
<option>Investment Opportunity</option>
</select>
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-700">Message</label>
<textarea id="message" rows="3" class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-copper-500 focus:ring-copper-500 p-2 border"></textarea>
</div>
<div>
<button type="submit" class="w-full bg-copper-600 text-white py-2 px-4 rounded-md hover:bg-copper-700 transition">
Send Inquiry
</button>
</div>
</form>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="bg-gray-800 text-white">
<div class="container mx-auto px-6 py-8">
<div class="md:flex md:justify-between">
<div class="mb-8 md:mb-0">
<h3 class="text-xl font-bold mb-4">TriMetal Core Inc</h3>
<p class="text-gray-400">Connecting Kenya's copper supply chain from mine to manufacturer.</p>
</div>
<div class="grid grid-cols-2 gap-8 md:grid-cols-3">
<div>
<h4 class="text-sm font-semibold uppercase tracking-wider mb-4">Quick Links</h4>
<ul class="space-y-2">
<li><a href="#overview" class="text-gray-400 hover:text-white">Overview</a></li>
<li><a href="#services" class="text-gray-400 hover:text-white">Services</a></li>
<li><a href="#market" class="text-gray-400 hover:text-white">Market Analysis</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-sm font-semibold uppercase tracking-wider mb-4">Legal</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Compliance</a></li>
</ul>
</div>
<div>
<h4 class="text-sm font-semibold uppercase tracking-wider mb-4">Connect</h4>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-linkedin text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-facebook text-xl"></i>
</a>
</div>
</div>
</div>
</div>
<div class="mt-8 pt-8 border-t border-gray-700 text-center text-gray-400">
<p>© 2023 TriMetal Core Inc. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Chart.js -->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script>
// Market Analysis Chart
const marketCtx = document.getElementById('marketChart').getContext('2d');
const marketChart = new Chart(marketCtx, {
type: 'bar',
data: {
labels: ['2018', '2019', '2020', '2021', '2022', '2023'],
datasets: [
{
label: 'Kenyan Copper Demand (MT)',
data: [1250, 1350, 1420, 1580, 1850, 2100],
backgroundColor: 'rgba(184, 115, 51, 0.7)',
borderColor: 'rgba(184, 115, 51, 1)',
borderWidth: 1
},
{
label: 'Our Market Share (%)',
data: [8, 12, 15, 18, 22, 25],
backgroundColor: 'rgba(101, 116, 139, 0.7)',
borderColor: 'rgba(101, 116, 139, 1)',
borderWidth: 1,
type: 'line',
yAxisID: 'y1'
}
]
},
options: {
responsive: true,
maintainAspectRatio: false,
scales: {
y: {
beginAtZero: true,
title: {
display: true,
text: 'Copper Volume (MT)'
}
},
y1: {
position: 'right',
beginAtZero: true,
max: 30,
title: {
display: true,
text: 'Market Share (%)'
},
grid: {
drawOnChartArea: false
}
}
}
}
});
// Financial Chart
const financialCtx = document.getElementById('financialChart').getContext('2d');
const financialChart = new Chart(financialCtx, {
type: 'line',
data: {
labels: ['Q1 2021', 'Q2 2021', 'Q3 2021', 'Q4 2021', 'Q1 2022', 'Q2 2022', 'Q3 2022', 'Q4 2022', 'Q1 2023', 'Q2 2023'],
datasets: [
{
label: 'Revenue (KES million)',
data: [45, 52, 48, 60, 55, 65, 70, 78, 82, 90],
borderColor: 'rgba(75, 192, 192, 1)',
backgroundColor: 'rgba(75, 192, 192, 0.2)',
fill: true,
tension: 0.3
},
{
label: 'Gross Profit (KES million)',
data: [9, 10.4, 9.6, 12, 11, 13, 14, 15.6, 16.4, 18],
borderColor: 'rgba(184, 115, 51, 1)',
backgroundColor: 'rgba(184, 115, 51, 0.2)',
fill: true,
tension: 0.3
}
]
},
options: {
responsive: true,
maintainAspectRatio: false,
scales: {
y: {
beginAtZero: true
}
}
}
});
// Form submission
document.querySelector('form').addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your inquiry! We will contact you shortly.');
this.reset();
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=ghost325/trimetalinc" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |