-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
150 lines (139 loc) · 7.33 KB
/
index.html
File metadata and controls
150 lines (139 loc) · 7.33 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SARK - Projects</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif']
}
}
}
}
</script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body class="bg-gray-50 font-sans">
<!-- Header -->
<header class="bg-white shadow-sm">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center py-6">
<img src="logo.svg" alt="SARK" class="h-12">
</div>
</div>
</header>
<!-- Main Content -->
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<!-- Projects Grid -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Drone -->
<a href="drone.html" class="group">
<div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow duration-300">
<div class="aspect-w-16 aspect-h-9">
<img src="static/images/Drone/drone_trim_hero.jpg" alt="FPV Drone" class="w-full h-64 object-cover group-hover:scale-105 transition-transform duration-300">
</div>
<div class="p-6">
<h3 class="text-xl font-medium text-gray-900 mb-2">FPV Drone</h3>
<p class="text-gray-600">Custom built FPV drone with modular design</p>
</div>
</div>
</a>
<!-- Photon -->
<a href="photon.html" class="group">
<div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow duration-300">
<div class="aspect-w-16 aspect-h-9">
<img src="static/images/Photon/photon_front.jpg" alt="Photon Lamp" class="w-full h-64 object-cover group-hover:scale-105 transition-transform duration-300">
</div>
<div class="p-6">
<h3 class="text-xl font-medium text-gray-900 mb-2">Photon</h3>
<p class="text-gray-600">Dining pendant lamp with warm LED illumination</p>
</div>
</div>
</a>
<!-- Drops -->
<a href="drops.html" class="group">
<div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow duration-300">
<div class="aspect-w-16 aspect-h-9">
<img src="static/images/Drops/drops_module_side.jpeg" alt="Drops Lamp" class="w-full h-64 object-cover group-hover:scale-105 transition-transform duration-300">
</div>
<div class="p-6">
<h3 class="text-xl font-medium text-gray-900 mb-2">Drops</h3>
<p class="text-gray-600">Modular dining pendant lamp system</p>
</div>
</div>
</a>
<!-- Motionpilot -->
<a href="motionpilot.html" class="group">
<div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow duration-300">
<div class="aspect-w-16 aspect-h-9">
<img src="static/images/Motionpilot/motionpilot_cover.jpeg" alt="Motionpilot Controller" class="w-full h-64 object-cover group-hover:scale-105 transition-transform duration-300">
</div>
<div class="p-6">
<h3 class="text-xl font-medium text-gray-900 mb-2">Motionpilot</h3>
<p class="text-gray-600">Motion control system and controller</p>
</div>
</div>
</a>
<!-- Pharaon -->
<a href="pharaon.html" class="group">
<div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow duration-300">
<div class="aspect-w-16 aspect-h-9">
<img src="static/images/Pharaon/pharaon_general.jpeg" alt="Pharaon Audio" class="w-full h-64 object-cover group-hover:scale-105 transition-transform duration-300">
</div>
<div class="p-6">
<h3 class="text-xl font-medium text-gray-900 mb-2">Pharaon</h3>
<p class="text-gray-600">Audio system and subwoofer design</p>
</div>
</div>
</a>
<!-- Stack -->
<a href="stack.html" class="group">
<div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow duration-300">
<div class="aspect-w-16 aspect-h-9">
<img src="static/images/Stack/stack_general_hero.jpeg" alt="Stack System" class="w-full h-64 object-cover group-hover:scale-105 transition-transform duration-300">
</div>
<div class="p-6">
<h3 class="text-xl font-medium text-gray-900 mb-2">Stack</h3>
<p class="text-gray-600">Modular stacking system design</p>
</div>
</div>
</a>
<!-- Steel -->
<a href="steel.html" class="group">
<div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow duration-300">
<div class="aspect-w-16 aspect-h-9">
<img src="static/images/Steel/steel_general_hero.jpg" alt="Steel Lamp" class="w-full h-64 object-cover group-hover:scale-105 transition-transform duration-300">
</div>
<div class="p-6">
<h3 class="text-xl font-medium text-gray-900 mb-2">Steel</h3>
<p class="text-gray-600">Big floor lamp with steel construction</p>
</div>
</div>
</a>
<!-- Turbine -->
<a href="turbine.html" class="group">
<div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition-shadow duration-300">
<div class="aspect-w-16 aspect-h-9">
<img src="static/images/Turbine/wind_turbine_hero.jpeg" alt="Wind Turbine" class="w-full h-64 object-cover group-hover:scale-105 transition-transform duration-300">
</div>
<div class="p-6">
<h3 class="text-xl font-medium text-gray-900 mb-2">Wind Turbine</h3>
<p class="text-gray-600">Home electricity generation system</p>
</div>
</div>
</a>
</div>
</main>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-8 mt-16">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<p>© 2025 SARK. All rights reserved.</p>
</div>
</footer>
</body>
</html>