-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (51 loc) · 1.72 KB
/
index.html
File metadata and controls
52 lines (51 loc) · 1.72 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
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<script src="/animation.js" defer></script>
</head>
<body>
<div class="min-h-screen bg-black text-white dark">
<section class="relative h-screen flex flex-col items-center justify-center overflow-hidden">
<canvas id="wind-animation" class="absolute top-0 left-0 w-full h-full bg-transparent" style="opacity: 0.7"></canvas>
<div class="container relative z-10 px-4 md:px-6 space-y-10 text-center">
<h1 class="text-4xl md:text-6xl lg:text-7xl font-bold tracking-tighter">
<span class="text-amber-400">Mendaval</span>Technologies
</h1>
<p class="max-w-[700px] mx-auto text-xl md:text-2xl text-zinc-400">
Harnessing the power of innovation like a gale force wind
</p>
<!--
<div class="flex flex-col sm:flex-row gap-4 justify-center">
<button class="bg-amber-500 hover:bg-amber-600 text-black">Get Started</button>
<button variant="outline" class="border-amber-500 text-amber-400 hover:bg-amber-950">
Learn More
</button>
</div>
-->
</div>
<!--
<div class="absolute bottom-10 left-1/2 transform -translate-x-1/2 animate-bounce">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
class="text-amber-400"
>
<path d="M12 5v14"></path>
<path d="m19 12-7 7-7-7"></path>
</svg>
</div>
-->
</section>
</body>
</html>