-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
94 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
|
||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Lexend:[email protected]&display=swap" rel="stylesheet"> | ||
|
||
<link rel="stylesheet" href="css/style.css"> | ||
<link rel="shortcut icon" type="image/png" href="img/favicon.png"> | ||
|
||
<!-- Add Font Awesome --> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> | ||
|
||
<title>DeepTempo | Cybersecurity powered by Deep Learning</title> | ||
</head> | ||
|
||
<body> | ||
<header class="navbar"> | ||
<div class="navbar__logo"> | ||
<img src="img/logo-full-color.png" alt="DeepTempo Logo"> | ||
</div> | ||
<div class="navbar__toggle" id="mobile-menu"> | ||
<span class="bar"></span> | ||
<span class="bar"></span> | ||
<span class="bar"></span> | ||
</div> | ||
<nav class="navbar__nav" id="navbar-overlay"> | ||
<ul class="navbar__list"> | ||
<li class="navbar__item"><a href="index.html" class="navbar__link">Home</a></li> | ||
<li class="navbar__item"><a href="product.html" class="navbar__link">Product</a></li> | ||
<li class="navbar__item"><a href="about-us.html" class="navbar__link active">About Us</a></li> | ||
<li class="navbar__item"><a href="https://medium.com/deeptempo" target="_blank" class="navbar__link">Blog</a></li> | ||
<li class="navbar__item"><a href="http://docs.deeptempo.ai/" target="_blank" class="navbar__link">Documentation</a></li> | ||
<li class="navbar__item"><a href="contact-us.html" class="navbar__link">Contact Us</a></li> | ||
</ul> | ||
<div class="navbar__close" id="close-menu">×</div> | ||
</nav> | ||
</header> | ||
|
||
<section class="hero-section"> | ||
<p>Thank you for sumitting</p> | ||
</section> | ||
|
||
<!-- <section class="cta-section"> | ||
<button class="cta-button">Join Us</button> | ||
</section> --> | ||
|
||
<footer class="footer"> | ||
<div class="row"> | ||
<div class="col-1-of-2"> | ||
<ul class="footer-nav"> | ||
<li>© DeepTempo.ai - 2024. All rights reserved.</li> | ||
<li><a href="docs/DeepTempo - Privacy Policy for Snowflake NativeApp.pdf">Privacy</a></li> | ||
<li><a href="docs/Getting Started with TEMPO.pdf">Documentation</a></li> | ||
</ul> | ||
<div class="footer__social-media"> | ||
<a href="https://www.youtube.com/@DeepTempo-ai" target="_blank"><i class="fab fa-youtube"></i></a> | ||
<a href="https://www.linkedin.com/groups/13114314/" target="_blank"><i class="fab fa-linkedin"></i></a> | ||
<a href="https://www.reddit.com/r/DeepTempo/" target="_blank"><i class="fab fa-reddit"></i></a> | ||
<a href="https://medium.com/deeptempo" target="_blank"><i class="fab fa-medium"></i></a> | ||
<!-- <a href="https://www.instagram.com/deep.tempo/" target="_blank"><i class="fab fa-instagram"></i></a> --> | ||
<!-- <a href="https://www.linkedin.com/company/deeptempo/" target="_blank"><i class="fab fa-facebook"></i></a> --> | ||
</div> | ||
</div> | ||
<div class="col-1-of-2"> | ||
<picture class="footer__logo"> | ||
<img alt="Full logo" src="img/logo-full-color.png"> | ||
</picture> | ||
<p class="footer__copyright"> | ||
DeepTempo was built by a team of deep learning engineers and enterprise system builders, many of whom have spent years in security operations teams. We believe in harnessing collective defense for cyber security via deep learning, to make the lives of security operations teams better while restoring the initiative to the defenders. | ||
</p> | ||
</div> | ||
</div> | ||
</footer> | ||
|
||
<script> | ||
const mobileMenu = document.getElementById('mobile-menu'); | ||
const navbarNav = document.getElementById('navbar-overlay'); | ||
const closeMenu = document.getElementById('close-menu'); | ||
|
||
mobileMenu.addEventListener('click', () => { | ||
navbarNav.classList.add('active'); | ||
}); | ||
|
||
closeMenu.addEventListener('click', () => { | ||
navbarNav.classList.remove('active'); | ||
}); | ||
</script> | ||
</body> | ||
</html> |