advisormatch-connect-pro / resources.html
MorleyMujansi's picture
I have reviewed and here are a few edits or additions.
29603c3 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resources | Lumikiza</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<main class="py-20">
<section class="container mx-auto px-4 max-w-4xl">
<div class="text-center mb-16">
<h1 class="text-4xl font-bold text-gray-900 mb-4">Founder Resources</h1>
<p class="text-xl text-gray-600 max-w-2xl mx-auto">Tools, templates, and guides to help you succeed</p>
</div>
<div class="bg-white rounded-xl shadow-sm p-8 md:p-10">
<h2 class="text-2xl font-bold text-gray-900 mb-6">Essential Resources for Zambian Entrepreneurs</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-blue-50 p-6 rounded-lg">
<h3 class="text-lg font-semibold text-blue-800 mb-4">Business Planning</h3>
<ul class="space-y-2">
<li class="flex items-center">
<i data-feather="file-text" class="text-blue-600 mr-2 w-4 h-4"></i>
<span>Business Plan Template</span>
</li>
<li class="flex items-center">
<i data-feather="download" class="text-blue-600 mr-2 w-4 h-4"></i>
<span>Financial Projection Tool</span>
</li>
<li class="flex items-center">
<i data-feather="dollar-sign" class="text-blue-600 mr-2 w-4 h-4"></i>
<span>Market Research Guide</span>
</li>
</ul>
</div>
<div class="bg-blue-50 p-6 rounded-lg">
<h3 class="text-lg font-semibold text-blue-800 mb-4">Funding & Investment</h3>
<ul class="space-y-2">
<li class="flex items-center">
<i data-feather="file-text" class="text-blue-600 mr-2 w-4 h-4"></i>
<span>Investor Pitch Deck Template</span>
</li>
<li class="flex items-center">
<i data-feather="download" class="text-blue-600 mr-2 w-4 h-4"></i>
<span>Zambian Funding Sources Guide</span>
</li>
<li class="flex items-center">
<i data-feather="file-text" class="text-blue-600 mr-2 w-4 h-4"></i>
<span>Grant Application Checklist</span>
</li>
</ul>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/notification-bell.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
</script>
</body>
</html>