powerflow-prodigy / projects.html
jclam's picture
we ant multiple pages
054a4b3 verified
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects | Solomon Okpuno</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>
</head>
<body class="bg-gray-50 text-gray-800 font-sans">
<custom-navbar></custom-navbar>
<!-- Projects Hero -->
<section class="relative py-32 bg-gradient-to-r from-primary-500 to-indigo-600 text-white">
<div class="container mx-auto px-6 text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">My Projects</h1>
<p class="text-xl max-w-2xl mx-auto">Power Platform solutions delivering real business value</p>
</div>
</section>
<!-- Projects Grid -->
<section class="py-20 bg-white">
<div class="container mx-auto px-6">
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden transition-transform duration-300 hover:scale-105 border border-gray-100">
<div class="h-48 bg-gradient-to-r from-primary-500 to-indigo-600 flex items-center justify-center">
<i data-feather="bar-chart-2" class="text-white w-16 h-16"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Retail Analytics Dashboard</h3>
<p class="text-gray-600 mb-4">Interactive Power BI dashboard for a national retail chain showing sales performance across 200+ locations.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs bg-primary-100 text-primary-800 px-2 py-1 rounded">Power BI</span>
<span class="text-xs bg-primary-100 text-primary-800 px-2 py-1 rounded">DAX</span>
<span class="text-xs bg-primary-100 text-primary-800 px-2 py-1 rounded">SQL</span>
</div>
<a href="#" class="text-primary-500 font-medium flex items-center">
Case Study <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
</div>
<!-- Project 2 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden transition-transform duration-300 hover:scale-105 border border-gray-100">
<div class="h-48 bg-gradient-to-r from-secondary-500 to-emerald-600 flex items-center justify-center">
<i data-feather="grid" class="text-white w-16 h-16"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">Field Service App</h3>
<p class="text-gray-600 mb-4">Model-driven Power App for technicians to manage work orders, inventory, and customer interactions.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs bg-primary-100 text-primary-800 px-2 py-1 rounded">Power Apps</span>
<span class="text-xs bg-primary-100 text-primary-800 px-2 py-1 rounded">Dataverse</span>
<span class="text-xs bg-primary-100 text-primary-800 px-2 py-1 rounded">Dynamics 365</span>
</div>
<a href="#" class="text-primary-500 font-medium flex items-center">
Case Study <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
</div>
<!-- Project 3 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden transition-transform duration-300 hover:scale-105 border border-gray-100">
<div class="h-48 bg-gradient-to-r from-amber-500 to-orange-600 flex items-center justify-center">
<i data-feather="refresh-cw" class="text-white w-16 h-16"></i>
</div>
<div class="p-6">
<h3 class="text-xl font-semibold mb-2">HR Onboarding Automation</h3>
<p class="text-gray-600 mb-4">Automated onboarding process with Power Automate, reducing manual tasks by 80% for HR department.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="text-xs bg-primary-100 text-primary-800 px-2 py-1 rounded">Power Automate</span>
<span class="text-xs bg-primary-100 text-primary-800 px-2 py-1 rounded">SharePoint</span>
<span class="text-xs bg-primary-100 text-primary-800 px-2 py-1 rounded">Teams</span>
</div>
<a href="#" class="text-primary-500 font-medium flex items-center">
Case Study <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
</body>
</html>