generated from nighthawkcoders/Nighthawk-Pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (94 loc) · 2.22 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
87
88
89
90
91
92
93
94
95
96
97
---
search_exclude: true
---
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PLACE 🏠</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav id="navbar">
<div class="logo">
<h2>PLACE 🏠</h2>
</div>
<div class="nav-links">
<a href="#login">Log in/Sign Up</a>
<a href="/channels">Channels</a>
<a href="cc-assistant.html">Chatbot</a>
<a href="#about">About Us</a>
</div>
</nav>
<section id="hero">
<h1>Welcome to PLACE</h1>
<p>Your decentralized community space without paywalls.</p>
</section>
<section id="features">
<div class="feature-box">
<h3>Customizable Servers</h3>
<p>With PLACE, you have the freedom to customize your servers for any purpose, without restrictions.</p>
</div>
<div class="feature-box">
<h3>Decentralized Ecosystem</h3>
<p>Experience a fully decentralized platform that puts the power back in the hands of the community.</p>
</div>
<div class="feature-box">
<h3>Free to Use</h3>
<p>Enjoy unlimited access to all features without any paywalls. PLACE is free for everyone.</p>
</div>
</section>
<script src="script.js"></script>
</body>
</html>
<style>
body, html {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
#navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #333;
color: #fff;
padding: 0 20px;
}
.nav-links a {
color: #fff;
text-decoration: none;
margin-left: 20px;
}
#hero {
background-color: #007bff;
color: #ffffff;
text-align: center;
padding: 50px 20px;
}
#features {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
padding: 20px;
}
.feature-box {
width: 30%;
margin: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
padding: 20px;
border-radius: 8px;
}
@media (max-width: 768px) {
.feature-box {
width: 100%;
}
}
</style>
<script>
// Example of future JavaScript to enhance interactivity
document.addEventListener('DOMContentLoaded', () => {
// Placeholder for any JS-based interactivity you might want to add
});
</script>