Spaces:
Running
Running
| <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">jibril.jabane@trimetalkenya.co.ke</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> |