-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiscellaneous.html
106 lines (96 loc) · 5.46 KB
/
miscellaneous.html
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
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" href="assets/images/favicon.png">
<!-- Custom Styles -->
<link rel="stylesheet" href="assets/styles.css">
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<title>Prince Mireku</title>
</head>
<body class="container w-4/5 md:w-1/2 mt-12 text-black/90">
<h1 class="text-center text-2xl text-bold underline my-12">Miscellaneous</h1>
<!-- Outreach -->
<section id="outreach">
<h1 class="font-bold text-2xl my-4">Outreach Activities</h1>
<div class="grid grid-cols-3 gap-3 text-white/80">
<div class="col-span-2 row-span-2 relative overflow-hidden rounded-lg shadow-lg">
<img class="w-full h-[21rem] object-cover" src="assets/images/outreach1.jpg" alt="" />
<p class="text-sm sm:text-md absolute bottom-0 bg-black/60 px-1">
Teaching members of the Ghana Electrical Contractors Association (GECA) the installation of digital CCTV cameras during a 5-day workshop.
</p>
</div>
<div class="relative overflow-hidden rounded-lg shadow-lg">
<img class="w-full h-40 object-cover" src="assets/images/outreach2.jpg" alt="" />
<p class="text-sm sm:text-md absolute bottom-0 bg-black/60 px-1">
Supporting GECA members with VoIP simulation.
</p>
</div>
<div class="relative overflow-hidden rounded-lg shadow-lg">
<img class="w-full h-40 object-cover" src="assets/images/gdg.jpg" alt="" style="object-position: top;" />
<p class="text-sm sm:text-md absolute bottom-0 bg-black/60 px-1">
Google Developers Group for tech outreach @ Tamale.
</p>
</div>
</div>
</section>
<!-- Outside Work -->
<section id="farm" class="my-12 py-8">
<h1 class="font-bold text-2xl my-4">Harvesting Crops Grown from Backyard</h1>
<div class="grid grid-cols-2 gap-4">
<div class="flex flex-col">
<a href="assets/images/tallest_sugarcane.jpg" target="_blank" rel="noopener noreferrer">
<img src="assets/images/tallest_sugarcane.jpg" alt="" class="mb-2 w-96 h-auto object-cover rounded-lg">
</a>
<p>Tallest Sugarcane harvested in my backyard farm. ≈2.8 meters in height👌</p>
</div>
<div class="flex flex-col">
<a href="assets/images/first_harvest.jpg" target="_blank" rel="noopener noreferrer">
<img src="assets/images/first_harvest.jpg" alt="First Harvest" class="mb-2 w-96 h-auto object-cover rounded-lg">
</a>
<p>First Harvest - 14 pieces of Piri-Piri pepper</p>
</div>
</div>
</section>
<!-- Before ML Research -->
<section id="web-design-portfolio" class="my-20">
<h1 class="font-bold text-2xl my-4">Web Design Portfolio (Prior ML Research)</h1>
<div class="grid grid-cols-2 sm:grid-cols-3 gap-2">
<div class="flex flex-col relative h-64 bg-gray-200/60">
<a href="https://www.behance.net/princemireku" target="_blank" rel="noopener noreferrer" class="h-full">
<img src="assets/images/behance.png" alt="Dribbble" class="mb-2 object-contain">
<div class="absolute inset-0 flex items-center flex-col space-y-4 justify-center bg-black bg-opacity-70 text-white transition-opacity">
<h1 class="text-lg font-bold">Behance</h1>
<!-- <h2 class="italic">View Profile</h2> -->
</div>
</a>
</div>
<div class="flex flex-col relative h-64">
<a href="https://dribbble.com/DevFreak1/shots" target="_blank" rel="noopener noreferrer" class="h-full">
<img src="assets/images/dribbble_2.jpg" alt="" class="mb-2 h-contain">
<div class="absolute inset-0 flex items-center justify-center flex-col space-y-4 bg-black bg-opacity-70 text-white/90 transition-opacity">
<h1 class="text-lg font-bold">Dribbble</h1>
<!-- <h2 class="italic">View Profile</h2> -->
</div>
</a>
</div>
<div class="flex flex-col relative bg-gray-200/60 h-64">
<a href="https://www.youtube.com/@DesignFreak" target="_blank" rel="noopener noreferrer">
<img src="assets/images/youtube.png" alt="" class="mb-2 h-full">
<div class="absolute inset-0 flex items-center justify-center flex-col space-y-4 bg-black bg-opacity-70 text-white transition-opacity">
<h1 class="text-lg font-bold">YouTube</h1>
<!-- <h2 class="italic">View Profile</h2> -->
</div>
</a>
</div>
</div>
<h1 class="italic text-sm py-2 text-center">Click to view profile in another tab</h1>
</section>
</body>
</html>