forked from Ahmeddhaq/aegusUSBOT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
143 lines (116 loc) · 5.29 KB
/
index.html
File metadata and controls
143 lines (116 loc) · 5.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aegus LLP</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://unpkg.com/lenis@1.3.15/dist/lenis.css">
</head>
<body>
<div id="main">
<div class="menu-overlay">
<div class="menu-overlay-inner">
<div class="menu-overlay-header">
<div class="menu-overlay-top">
<span class="menu-label">Menu</span>
</div>
<button class="menu-close" aria-label="Close menu">
<span></span>
<span></span>
</button>
</div>
<nav class="menu-links">
<a href="./index.html" class="active">Home</a>
<a href="./about/index.html">About</a>
<a href="./product/index.html">Products</a>
<a href="./solution/index.html">Solutions</a>
<a href="./technology/index.html">Technology</a>
<a href="./contact/index.html">Contact</a>
</nav>
<div class="menu-overlay-footer">
<p>Secure Offline AI for Professionals</p>
</div>
</div>
</div>
<div class="header">
<img src="./assets/logo.svg" alt="logo">
<div class="nav">
<a href="./index.html" class="active">Home</a>
<a href="./about/index.html">About</a>
<a href="./product/index.html">Products</a>
<a href="./solution/index.html">Solutions</a>
<a href="./technology/index.html">Technology</a>
<a href="./contact/index.html">Contact</a>
</div>
<div class="actions">
<div class="signin">
<a href="./signin/signin/index.html">Sign In</a>
</div>
<div class="register">
<a href="./register/index.html">Register</a>
</div>
<div class="btn">Explore Products</div>
</div>
<div class="menu">
<hr>
<hr>
</div>
</div>
<div class="hero">
<h1>Secure Offline, <br>AI Solutions <img src="./assets/overlay.png" alt="overlay"></h1>
<p>Building a more private practice through AI-powered, affordable <br> technology that protects client data
and empowers professionals</p>
<div class="buttons">
<div class="btn1">Explore Products</div>
<div class="btn2">Learn More</div>
</div>
</div>
<div class="vision">
<div class="tittle">Our Core Principle</div>
<div class="card-container">
<img src="./assets/Cards.svg" alt="cards">
</div>
</div>
<div class="cta">
<div class="tittle">Our Purpose</div>
<h1>Empowering Professionals,<br>Protecting Privacy.</h1>
<p>In a world increasingly reliant on digital tools, Aegus delivers cutting-edge, on-device AI that ensures
unparalleled security and efficiency for legal professionals, chartered accountants, and more.</p>
<div class="buttons">
<div class="btn1">Explore Products</div>
<div class="btn2">Learn More</div>
</div>
</div>
<div class="footer">
<div class="footer-inner">
<div class="col logo-col">
<img src="./assets/logo.svg" alt="logo">
<p>Secure Offline AI for Professionals</p>
</div>
<div class="col">
<h3>Explore</h3>
<a href="./about/index.html">About</a>
<a href="./product/index.html">Products</a>
<a href="./solution/index.html">Solutions</a>
<a href="./technology/index.html">Technology</a>
<a href="./contact/index.html">Contact</a>
</div>
<div class="col">
<h3>Legal</h3>
<a href="#">Terms of Service</a>
<a href="#">Privacy Policy</a>
</div>
</div>
</div>
</div>
<script src="https://unpkg.com/lenis@1.3.15/dist/lenis.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.13.0/gsap.min.js"
integrity="sha512-NcZdtrT77bJr4STcmsGAESr06BYGE8woZdSdEgqnpyqac7sugNO+Tr4bGwGF3MsnEkGKhU2KL2xh6Ec+BqsaHA=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.13.0/ScrollTrigger.min.js"
integrity="sha512-P2IDYZfqSwjcSjX0BKeNhwRUH8zRPGlgcWl5n6gBLzdi4Y5/0O4zaXrtO4K9TZK6Hn1BenYpKowuCavNandERg=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="script.js"></script>
</body>
</html>