-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.html
More file actions
86 lines (79 loc) · 3.48 KB
/
products.html
File metadata and controls
86 lines (79 loc) · 3.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Beebotix - Innovative Solutions</title>
<link rel="icon" type="image/png" href="./assets/img/logo.png">
<link rel="stylesheet" href="./products.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
</head>
<body>
<nav class="navbar">
<div class="nav-content">
<a href="./index.html" class="back-btn">
<i class="fas fa-arrow-left"></i> Back
</a>
<div class="logo">
<!--<i class="fas fa-robot"></i>-->
<span><img src="./logo.svg" alt="BeeBotix"></span>
</div>
</div>
</nav>
<div class="modal" id="welcomeModal">
<div class="modal-content">
<span class="close-btn">×</span>
<h2>Welcome to Beebotix!</h2>
<p>Interested in our innovative solutions? Connect with us:</p>
<div class="social-links">
<a href="mailto:contact@beebotix.com"><i class="fas fa-envelope"></i></a>
<a href="https://in.linkedin.com/in/sukarna-jana"><i class="fab fa-linkedin"></i></a>
<a href="https://www.instagram.com/beebotix/"><i class="fab fa-instagram"></i></a>
</div>
</div>
</div>
<main>
<section class="products-section" id="hardware-products">
<h2>Hardware Products</h2>
<div class="products-grid" id="hardware-products-grid"></div>
</section>
<section class="products-section" id="software-products">
<h2>Software Products</h2>
<div class="products-grid" id="software-products-grid"></div>
</section>
<section id="coming-soon-card" class="coming-soon-section">
<div class="coming-soon-container">
<h1 class="coming-soon-title">COMING SOON!</h1>
<p class="coming-soon-text">Exciting new product lineups are coming your way! Powered by BeeBotix.</p>
<p class="call-to-action">If you're interested in any of our previous products, feel free to contact us, and we'll send it to your doorstep.</p>
<button class="contact-btn" onclick="window.location.href='mailto:contact@beebotix.com'">Contact Us</button>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>Beebotix</h3>
<p>Innovating for tomorrow, delivering excellence today.</p>
</div>
<div class="footer-section">
<h3>Contact Us</h3>
<p>Email: contact@beebotix.com</p>
<p>Phone: +91 9113688393</p>
</div>
<div class="footer-section">
<h3>Follow Us</h3>
<div class="social-links">
<a href="https://in.linkedin.com/in/sukarna-jana"><i class="fab fa-linkedin"></i></a>
<a href="https://www.instagram.com/beebotix/"><i class="fab fa-instagram"></i></a>
<a href="https://x.com/janasukarna"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 Beebotix. All rights reserved.</p>
</div>
</footer>
<script src="./product.js"></script>
</body>
</html>