-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (116 loc) · 4.32 KB
/
index.html
File metadata and controls
120 lines (116 loc) · 4.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>augument | build beautiful things</title>
<link rel="stylesheet" href="./css/global.css">
</head>
<body>
<div class="wrapper">
<!-- HEADER -->
<header class="site-header">
<div class="container">
<div class="header-inner">
<div class="logo">
<a href="#">
<img src="./images/logo-text.svg" alt="Logo" />
</a>
</div>
<!-- Desktop Navigation (left side) -->
<nav class="nav-desktop left">
<a href="features.html">Features</a>
<a href="pricing.html">Pricing</a>
<a href="https://tools.augument.dev">Tools</a>
</nav>
<!-- Desktop Navigation (right side) -->
<nav class="nav-desktop right">
<a href="https://auth.augument.dev/login">Login</a>
<a href="https://auth.augument.dev/signup" class="btn primary">Sign up</a>
</nav>
</div>
<!-- Mobile Navigation Toggle & Menu -->
<!-- The hidden checkbox controls the toggle state -->
<input type="checkbox" id="nav-toggle" />
<label for="nav-toggle" class="nav-toggle">
<span class="icon hamburger">
<!-- Hamburger Icon -->
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"
stroke-linejoin="round" class="icon">
<path d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</span>
<span class="icon close">
<!-- Close Icon -->
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
stroke-linejoin="round" class="icon">
<path d="M6 18L18 6M6 6l12 12"></path>
</svg>
</span>
</label>
<!-- Mobile Navigation Menu -->
<nav class="nav-mobile">
<a href="features.html">Features</a>
<a href="pricing.html">Pricing</a>
<a href="https://tools.augument.dev">Tools</a>
<a href="https://auth.augument.dev/login">Login</a>
<a href="https://auth.augument.dev/signup" class="btn primary">Sign up</a>
</nav>
</div>
</header>
<!-- HERO SECTION -->
<section class="hero">
<div class="container">
<div class="hero-content">
<h1 class="hero-subtitle">
Make amazing things happen
</h1>
<h2 class="hero-title">
build
<span class="gradient-text-wrapper">
<span> beautiful </span>
</span>
things
</h2>
<div class="hero-buttons">
<a href="https://auth.augument.dev/signup" class="btn primary">Get Started</a>
<a href="https://tools.augument.dev" class="btn secondary">
<!-- Small play icon -->
<svg viewBox="0 0 18 18" fill="none" stroke="currentColor" stroke-width="2" stroke-miterlimit="10"
stroke-linecap="round" stroke-linejoin="round" style="width:20px; height:20px;">
<path
d="M8.18 13.4261C6.8586 14.3918 5 13.448 5 11.8113V5.43865C5 3.80198 6.8586 2.85821 8.18 3.82387L12.5403 7.01022C13.6336 7.80916 13.6336 9.44084 12.5403 10.2398L8.18 13.4261Z">
</path>
</svg>
Check out our tools
</a>
</div>
<p class="hero-note">
All the tools you need to build amazing things
</p>
</div>
</div>
<!-- Hero Image -->
<div class="hero-image-wrapper">
<div class="hero-image-bg"></div>
<div class="container">
<div class="hero-image">
<img src="https://cdn.rareblocks.xyz/collection/clarity/images/hero/2/illustration.png" alt="Illustration" />
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="site-footer">
<div class="container">
<div class="footer-inner">
<div class="footer-logo">
<img src="./images/logo-text.svg" alt="Logo" />
</div>
Copyright © 2025 Augument. All rights reserved.
</div>
</div>
</footer>
</div>
</body>
</html>