File size: 5,169 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
94
95
96
97
98
99
100
<!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>About | 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>

    <!-- About 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">About Me</h1>
            <p class="text-xl max-w-2xl mx-auto">Discover my journey in Power Platform development</p>
        </div>
    </section>

    <!-- Bio Section -->
    <section class="py-20 bg-white">
        <div class="container mx-auto px-6">
            <div class="flex flex-col md:flex-row gap-12 items-center">
                <div class="md:w-1/2">
                    <img src="http://static.photos/technology/640x360/42" alt="Solomon Okpuno" class="rounded-xl shadow-xl">
                </div>
                <div class="md:w-1/2">
                    <h2 class="text-3xl font-bold mb-6">Professional Journey</h2>
                    <p class="text-gray-600 mb-6">With over 5 years of experience in Power Platform development, I've helped organizations transform their data into actionable insights and automate complex business processes.</p>
                    <p class="text-gray-600 mb-6">My journey began with data analysis in Excel, evolved through Power BI dashboard development, and now encompasses full-stack Power Platform solutions.</p>
                    <div class="flex flex-wrap gap-4">
                        <span class="bg-primary-100 text-primary-800 px-4 py-2 rounded-full">Power BI Expert</span>
                        <span class="bg-secondary-100 text-secondary-800 px-4 py-2 rounded-full">Certified Developer</span>
                        <span class="bg-indigo-100 text-indigo-800 px-4 py-2 rounded-full">Solution Architect</span>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <!-- Education & Certifications -->
    <section class="py-20 bg-gray-50">
        <div class="container mx-auto px-6">
            <h2 class="text-3xl font-bold mb-12 text-center">Education & Certifications</h2>
            
            <div class="grid md:grid-cols-2 gap-8">
                <div class="bg-white p-8 rounded-xl shadow-lg">
                    <h3 class="text-xl font-semibold mb-4 text-primary-500">Academic Background</h3>
                    <div class="space-y-6">
                        <div>
                            <h4 class="font-medium">MSc Management with Business Analytics</h4>
                            <p class="text-gray-600">Bournemouth University, UK (2021-2022)</p>
                        </div>
                        <div>
                            <h4 class="font-medium">BSc Computer Science</h4>
                            <p class="text-gray-600">Federal University of Technology, Nigeria (2010-2015)</p>
                        </div>
                    </div>
                </div>
                
                <div class="bg-white p-8 rounded-xl shadow-lg">
                    <h3 class="text-xl font-semibold mb-4 text-primary-500">Microsoft Certifications</h3>
                    <div class="space-y-4">
                        <div class="flex items-start">
                            <i data-feather="award" class="text-secondary-500 mr-3 mt-1"></i>
                            <div>
                                <h4 class="font-medium">PL-300: Power BI Data Analyst</h4>
                                <p class="text-gray-600">Issued 2023</p>
                            </div>
                        </div>
                        <div class="flex items-start">
                            <i data-feather="award" class="text-secondary-500 mr-3 mt-1"></i>
                            <div>
                                <h4 class="font-medium">PL-900: Power Platform Fundamentals</h4>
                                <p class="text-gray-600">Issued 2022</p>
                            </div>
                        </div>
                        <div class="flex items-start">
                            <i data-feather="award" class="text-secondary-500 mr-3 mt-1"></i>
                            <div>
                                <h4 class="font-medium">PL-7003: Model-Driven Apps & Dataverse</h4>
                                <p class="text-gray-600">Issued 2023</p>
                            </div>
                        </div>
                    </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>