-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
84 lines (81 loc) · 3.27 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
---
layout: base
description: >-
NukeHub is a pioneering platform dedicated to the exploration and
advancement of nuclear technology.
keywords: >-
nukehub, nuclear, technology, science, open source, innovation,
collaboration, community, simulation, discussions
permalink: /
---
<!--========== Home ==========-->
<section class="home section" id="home">
<div class="home_container container grid">
<div class="home_content grid">
<div class="home_social">
<a href="https://github.com/nukehub-dev/" target="_blank">
<i class="nuke-github-alt home_social-icon"></i>
</a>
<div class="home_social-icon">
<i class="nuke-share"></i>
<script>
document.querySelector('.nuke-share').addEventListener('click', function () {
if (navigator.share) {
navigator.share({
title: document.title,
url: window.location.href
}).then(() => console.log('Successful share'))
.catch((error) => notifier.info('Error sharing', error));
} else {
navigator.clipboard.writeText(window.location.href)
.then(() => { notifier.success('Link copied to clipboard'); })
.catch((error) => { notifier.alert('Error copying link to clipboard', error); });
}
});
</script>
</div>
<a href="https://talk.nukehub.org" target="_blank" class="home_social-icon">
<i class="nuke-chat-2"></i>
</a>
</div>
<div class="home_img">
{% include svg.html class="nukehub-logo" %}
</div>
<div class="home_data">
<h3 class="home_subtitle">Introducing</h3>
<h1 class="home_title">NukeHub</h1>
<p class="home_description">
A pioneering platform dedicated to the exploration and advancement
of nuclear technology. Our mission is to foster a community of innovators,
enthusiasts, and professionals who are passionate about nuclear technology.
</p>
</div>
</div>
</div>
</section>
<!--========== Research and development ==========-->
<section class="project section" id="projects">
<h2 class="section_title">Projects</h2>
<span class="section_subtitle">Research and Development</span>
{% include project-box.html %}
</section>
<!--========== Join ==========-->
<section class="join section" id="join">
<h2 class="section_title">Join with Us</h2>
<span class="section_subtitle">Let's Dive into the Nuclear Universe Together</span>
<div class="join_container container grid">
<img src="assets/images/nuketalk.svg" alt="NukeTalk Logo" style="filter:var(--color-svg);" class="join_img" />
<div class="join_data">
<p class="join_description">
Ignite your passion for nuclear science & engineering.
Join the conversation, share knowledge, and explore the
atomic world with experts.
</p>
<div class="join_buttons">
<a target="_blank" href="https://talk.nukehub.org" class="button button--flex">
Join <i class="nuke-arrow-ios-forward button_icon"></i>
</a>
</div>
</div>
</div>
</section>