-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (72 loc) · 4.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Holotype Robotics</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header class="main-header">
<h1>
<img src="logo.svg" class="logo">
HOLOTYPE ROBOTICS
</h1>
</header>
<section class="content">
<p class="introduction">
Welcome to Holotype Robotics, where we're reshaping the landscape of personal robotics through modular,
customizable kits and software.
</p>
<div class="accordion" id="aboutUsAccordion">
<!-- Vision Section -->
<div class="card">
<div class="card-header" id="visionHeading">
<h2 class="mb-0">
<button class="btn btn-link" type="button" data-toggle="collapse" data-target="#visionCollapse"
aria-expanded="true" aria-controls="visionCollapse">
Our Vision
</button>
</h2>
</div>
<div id="visionCollapse" class="collapse show" aria-labelledby="visionHeading" data-parent="#aboutUsAccordion">
<div class="card-body">
<p>
Our vision is to redefine the possibilities of personal robotics. Imagine robots that
learn from their surroundings, making decisions based on experience and seamlessly
transferring knowledge. We aim to create a world where robots are not just tools but
intelligent companions, enhancing daily life through continuous learning and adaptability.
</p>
<a href="https://www.holotyperobotics.com/about">Read more</a>
</div>
</div>
</div>
</div>
<h2 class="explore-header">Explore Holotype Robotics</h2>
<ul class="link-list">
<li class="link-item">🛍️ To discover our products, visit our <a
href="https://www.tindie.com/stores/holotyperobotics/">Tindie shop</a>.</li>
<li class="link-item">👥 Join the discussion and collaborate with our community on <a
href="forums.holotyperobotics.com">forums</a>.</li>
<li class="link-item">💻 For code, examples, and downloads, explore our <a
href="https://github.com/HolotypeRobotics">GitHub page</a>.</li>
<li class="link-item">🏆 Follow our progress on <a href="https://hackaday.io/HolotypeRobotics">Hackaday.io</a>
</li>
<li class="link-item">📱 Get in touch with us via <a href="https://twitter.com/Holotype_">Twitter</a>.</li>
<li class="link-item">📸 See our latest projects on <a
href="https://www.instagram.com/holotype_robotics/">Instagram</a>.</li>
<li class="link-item">📚 Explore documentation and instructions on <a
href="https://holotypedocs.readthedocs.io/en/latest/">Holotype Docs</a>.</li>
<li class="link-item">💬 Join the discussion on our <a href="https://discord.gg/W5VMAHqb28">Discord</a> server.
</li>
</ul>
</section>
</div>
<!-- Bootstrap JS and Popper.js scripts -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>