-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (59 loc) · 2.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Burst Neuron | Innovative Products</title>
<link rel="stylesheet" href="./static/style.css">
</head>
<body>
<!-- Header -->
<header>
<div class="logo-container">
<img src="./static/white.png" alt="logo" width="50px" height="50px">
<div class="logo">Burst Neuron</div>
</div>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#products">Products</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<section class="hero" id="home">
<h1>Welcome to Burst Neuron</h1>
<p>Innovative solutions in hardware and software for your everyday needs.</p>
</section>
<!-- Products Section -->
<section class="products" id="products">
<h2>Our Products</h2>
<div class="products-container">
<!-- Car Dashcam -->
<div class="product-card">
<h3>Satyaki Car Dashcam</h3>
<p>High-quality dashcam providing security and convenience for your vehicle.</p>
<a href="https://www.satyaki.in" target="_blank">Learn more</a>
</div>
<!-- Vidoren -->
<div class="product-card">
<h3>Vidoren</h3>
<p>A content creation platform that simplifies video editing with caption tools and more.</p>
<a href="https://www.vidoren.com" target="_blank">Visit Vidoren</a>
</div>
<!-- ToolsForImage -->
<div class="product-card">
<h3>ToolsForImage</h3>
<p>Easy-to-use image processing tools for all your needs, right from your browser.</p>
<a href="https://www.toolsforimage.com" target="_blank">Try ToolsForImage</a>
</div>
</div>
</section>
<!-- Footer -->
<footer id="contact">
<p>© 2024 Burst Neuron. All rights reserved.</p>
<p>Contact us: <a href="mailto:[email protected]">[email protected]</a></p>
</footer>
</body>
</html>