File size: 5,596 Bytes
054a4b3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!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>