-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (83 loc) · 3.1 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>LogUnify - The Next Gen Logging Infra</title>
<link href="assets/img/favicon.png" rel="icon" />
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon" />
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,600,600i,700,700i"
rel="stylesheet"
/>
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet" />
<link href="assets/css/style.css" rel="stylesheet" />
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/js/main.js"></script>
</head>
<body>
<header id="header">
<div class="container-fluid d-flex justify-content-between align-items-center">
<div class="logo">
<h1 class="text-light">
<a href="index.html"><span>LogUnify</span></a>
</h1>
</div>
<div class="contact-link float-right">
<a href="#contact" class="scrollto">Contact Us</a>
</div>
</div>
</header>
<!-- End #header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="hero-container">
<h1>LogUnify</h1>
<h2>We are building the next generation of application event logging infrastructure</h2>
<div class="countdown" data-count="2023/11/1" data-template="%d days %h:%m:%s"></div>
<button type="button" class="btn btn-primary btn-lg">
<a
href="https://docs.google.com/forms/d/e/1FAIpQLSc_hvbxrU0falwfRWEITiCjrM-noekKqbk2o5yFY-1yObUVFQ/viewform?usp=sf_link"
>
Get Notified
</a>
</button>
</div>
</section>
<!-- End Hero -->
<main id="main">
<!-- ======= Contact Us Section ======= -->
<section id="contact" class="contact">
<div class="container">
<div class="section-title">
<h2>Contact Us</h2>
</div>
<div class="row contact-info">
<div class="col-md-4"></div>
<div class="col-md-4">
<div class="contact-email">
<i class="bi bi-envelope"></i>
<h3>Email</h3>
<p><a href="mailto:daiyi@logunify.com">daiyi@logunify.com</a></p>
</div>
</div>
<div class="col-md-4">
<div class="contact-phone"></div>
</div>
</div>
</div>
</section>
<!-- End Contact Us Section -->
</main>
<!-- End #main -->
<footer id="footer">
<div class="container">
<div class="copyright">
© <strong><span>LogUnify</span></strong>
</div>
</div>
</footer>
</body>
</html>