-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (72 loc) · 5.17 KB
/
Copy pathindex.html
File metadata and controls
87 lines (72 loc) · 5.17 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Neshan Maps Hammasir Bootcamp</title>
<!-- Tailwind CSS for styling -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Google Fonts: Inter -->
<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=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
/* Use the Inter font family */
body {
font-family: 'Inter', sans-serif;
}
</style>
</head>
<body class="bg-gray-100 text-gray-800">
<!-- Main container -->
<div class="min-h-screen flex flex-col items-center justify-center p-4">
<div class="w-full max-w-4xl text-center">
<!-- Header Section -->
<header class="mb-8">
<h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-2">
Neshan Maps Hammasir Bootcamp
</h1>
<p class="text-lg md:text-xl text-gray-600">
This page is created to make it easier to access different resources:
</p>
</header>
<!-- Links Section -->
<!-- The grid layout ensures all buttons are of equal size -->
<!-- It shows 1 column on small screens, 2 on medium, and 3 on large screens -->
<main class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Link Button 1: You can copy and paste this block to add more buttons -->
<a href="https://github.com/rahmasir" target="_blank" rel="noopener noreferrer" class="resource-button bg-white p-6 rounded-lg shadow-md hover:shadow-xl hover:-translate-y-1 transition-all duration-300 ease-in-out flex items-center justify-center text-center">
<span class="text-lg font-semibold text-blue-600">Rahmasir github</span>
</a>
<a href="https://github.com/enansari" target="_blank" rel="noopener noreferrer" class="resource-button bg-white p-6 rounded-lg shadow-md hover:shadow-xl hover:-translate-y-1 transition-all duration-300 ease-in-out flex items-center justify-center text-center">
<span class="text-lg font-semibold text-blue-600">My personal github</span>
</a>
<a href="https://neshan.org/life/hammasir_bootcamp/" target="_blank" rel="noopener noreferrer" class="resource-button bg-white p-6 rounded-lg shadow-md hover:shadow-xl hover:-translate-y-1 transition-all duration-300 ease-in-out flex items-center justify-center text-center">
<span class="text-lg font-semibold text-blue-600">Hammasir webpage</span>
</a>
<a href="https://neshan.org/" target="_blank" rel="noopener noreferrer" class="resource-button bg-white p-6 rounded-lg shadow-md hover:shadow-xl hover:-translate-y-1 transition-all duration-300 ease-in-out flex items-center justify-center text-center">
<span class="text-lg font-semibold text-blue-600">Neshan Maps</span>
</a>
<a href="https://docs.google.com/spreadsheets/d/1P0yw116j3-e04XB8FrZn2kJ8Ic9FK_VQgqM4G--4ylM/edit?usp=sharing" target="_blank" rel="noopener noreferrer" class="resource-button bg-white p-6 rounded-lg shadow-md hover:shadow-xl hover:-translate-y-1 transition-all duration-300 ease-in-out flex items-center justify-center text-center">
<span class="text-lg font-semibold text-blue-600">Roadmap</span>
</a>
<a href="https://omigo.ir/r/c6a9" target="_blank" rel="noopener noreferrer" class="resource-button bg-white p-6 rounded-lg shadow-md hover:shadow-xl hover:-translate-y-1 transition-all duration-300 ease-in-out flex items-center justify-center text-center">
<span class="text-lg font-semibold text-blue-600">my experiences</span>
</a>
<a href="https://github.com/rahmasir/resources" target="_blank" rel="noopener noreferrer" class="resource-button bg-white p-6 rounded-lg shadow-md hover:shadow-xl hover:-translate-y-1 transition-all duration-300 ease-in-out flex items-center justify-center text-center">
<span class="text-lg font-semibold text-blue-600">resources</span>
</a>
<a href="https://github.com/rahmasir/fm-hub" target="_blank" rel="noopener noreferrer" class="resource-button bg-white p-6 rounded-lg shadow-md hover:shadow-xl hover:-translate-y-1 transition-all duration-300 ease-in-out flex items-center justify-center text-center">
<span class="text-lg font-semibold text-blue-600">final project</span>
</a>
</main>
</div>
</div>
<script>
// No JavaScript is strictly necessary for this page,
// but you could add some here if you wanted more complex interactions.
// For example, you could dynamically load the links from a JSON file.
console.log("Page loaded successfully!");
</script>
</body>
</html>