-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
70 lines (65 loc) · 3.66 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Raydo Matthee - burnt-exe</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
.dropdown:hover .dropdown-content {
display: block;
}
</style>
</head>
<body class="bg-gray-900 text-white">
<header class="text-center py-10">
<img src="https://github.com/burnt-exe/burnt-exe.github.io/blob/main/bunrtexe_logo_print.png?raw=true" alt="burnt.exe logo" class="mx-auto mb-4 rounded-full shadow-lg">
<h1 class="text-4xl font-bold">Raydo Matthee</h1>
<p class="text-xl">@burnt-exe</p>
<p class="text-lg">CEO of Skunkworks (Pty) Ltd</p>
<!-- Navigation Menu -->
<nav class="mt-6">
<ul class="flex justify-center space-x-4">
<li><a href="about.html" class="hover:text-blue-400">About</a></li>
<li><a href="projects.html" class="hover:text-blue-400">Projects</a></li>
<li class="dropdown">
<a href="#" class="hover:text-blue-400">Achievements</a>
<div class="dropdown-content hidden absolute bg-gray-900 text-white py-2 rounded-lg shadow-lg">
<a href="#" class="block px-4 py-2 hover:bg-gray-800">IBM Champions</a>
<!-- Add more achievement pages as needed -->
</div>
</li>
<li><a href="contact.html" class="hover:text-blue-400">Contact</a></li>
</ul>
</nav>
</header>
<section id="about" class="py-10">
<div class="container mx-auto px-4">
<div class="flex flex-wrap justify-center items-center">
<div class="w-full md:w-1/2 lg:w-1/3 px-4 mb-8">
<img src="https://github.com/burnt-exe/burnt-exe.github.io/blob/main/discord%20-%20Copy.jpg?raw=true" alt="burnt.exe Digital Toast Illustration" class="rounded-lg shadow-lg">
</div>
<div class="w-full md:w-1/2 lg:w-2/3 px-4">
<h2 class="text-3xl font-bold mb-4">Hello, I'm Raydo Matthee</h2>
<p class="text-lg">
I'm the CEO of Skunkworks (Pty) Ltd, a trailblazing technology and learning solutions company based in Johannesburg. We are at the forefront of innovation, creating impactful technology and learning experiences.
</p>
<p class="mt-4">Follow Skunkworks on our journey:</p>
<a href="https://www.skunkworks.africa" class="text-blue-400 hover:text-blue-500">www.skunkworks.africa</a>
<div class="flex space-x-4 mt-4">
<a href="https://linkedin.com/company/skunkworksza" class="hover:text-gray-300"><i class="fab fa-linkedin"></i></a>
<a href="https://twitter.com/skunkworksza" class="hover:text-gray-300"><i class="fab fa-twitter-square"></i></a>
<a href="https://github.com/skunkworksza" class="hover:text-gray-300"><i class="fab fa-github-square"></i></a>
</div>
<p class="mt-4">9 followers · 69 following</p>
</div>
</div>
</div>
</section>
<footer class="text-center py-6 border-t border-gray-800 mt-10">
<p>© 2024 burnt.exe. All rights reserved.</p>
<p>Powered by Skunkworks creativity and innovation.</p>
</footer>
</body>
</html>