-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhats-new.html
208 lines (190 loc) · 6.43 KB
/
whats-new.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>What's New</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Montserrat:[email protected]&display=swap");
*,
ul {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Montserrat", sans-serif;
font-weight: 400;
}
.wrapper {
padding: 1rem;
}
.content {
display: flex;
flex-direction: column;
gap: 16px;
}
p,
span,
li {
font-size: 14px;
color: #212121;
line-height: 120%;
}
.link {
font-size: 14px;
font-weight: 600;
text-decoration: none;
color: #f2970e;
line-height: 120%;
}
.list_content,
.inner_list_wrapper {
margin: 0;
padding: 0;
list-style-type: decimal;
display: flex;
flex-direction: column;
gap: 16px;
list-style-position: inside;
}
.inner_list_wrapper {
padding-top: 16px;
list-style-type: lower-alpha;
}
.inner_list,
.inner_list_content {
list-style-type: disc;
list-style-position: outside;
padding-left: 32px;
padding-top: 16px;
}
.inner_list_content {
padding-top: 4px;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="content">
<p>
Welcome to the "What's New" section of Orbit! We're excited to share
the latest features, enhancements, and updates that will make your
social experience even more enjoyable. Here's a glimpse of what's been
added to Orbit in our recent updates:
</p>
<ul class="list_content">
<li>
<span>Dark Mode 🌙</span>
<ul class="inner_list">
<li>
Embrace the sleek and modern look with our new Dark Mode!
Whether you're scrolling through your feed in the evening or
just prefer a darker aesthetic, Dark Mode is here to enhance
your visual experience.
</li>
</ul>
</li>
<li>
<span>Enhanced Privacy Controls 🔒</span>
<ul class="inner_list">
<li>
Your privacy is our priority. We've introduced new privacy
controls, allowing you to fine-tune who sees your posts, manage
friend requests, and customize your overall privacy preferences
with ease.
</li>
</ul>
</li>
<li>
<span>Trending Hashtags 📈</span>
<ul class="inner_list">
<li>
Stay on top of the latest trends with our new Trending Hashtags
feature! Discover popular topics, join conversations, and
connect with users who share your interests.
</li>
</ul>
</li>
<li>
<span>Profile Customization 🎨</span>
<ul class="inner_list">
<li>
Express yourself even more with enhanced profile customization
options. Add flair to your profile by choosing from a variety of
background colors, fonts, and other creative elements.
</li>
</ul>
</li>
<li>
<span>Group Chats 👥</span>
<ul class="inner_list">
<li>
Connect with your friends, family, or community on a deeper
level with Group Chats. Start private conversations, share
updates, and engage with multiple users in a single space.
</li>
</ul>
</li>
<li>
<span>Performance Improvements and Bug Fixes 🚀</span>
<ul class="inner_list">
<li>
We've worked behind the scenes to enhance app performance and
address any bugs you might have encountered. Enjoy a smoother,
more reliable Orbit experience.
</li>
</ul>
</li>
<li>
<span>New Emoji Reactions 😍👏</span>
<ul class="inner_list">
<li>
React to posts in style! We've added new emoji reactions to help
you express yourself and connect with others in a fun and
interactive way.
</li>
</ul>
</li>
<li>
<span>Discover Feed 🌐</span>
<ul class="inner_list">
<li>
Explore a personalized Discover Feed, filled with content
tailored to your interests. Find new friends, trending posts,
and discover communities that align with your passions.
</li>
</ul>
</li>
<li>
<span>Improved Accessibility Features ♿</span>
<ul class="inner_list">
<li>
Orbit is for everyone. We've made updates to improve
accessibility features, ensuring a more inclusive experience for
all users.
</li>
</ul>
</li>
<li>
<span>In-App Tutorials 📘</span>
<ul class="inner_list">
<li>
New to Orbit? Get started with our in-app tutorials that guide
you through the app's key features and functionalities, helping
you make the most out of your social journey.
</li>
</ul>
</li>
</ul>
<p>
We're committed to enhancing your Orbit experience, and these updates
are just the beginning. Stay tuned for more exciting features in
future releases! As always, your feedback is invaluable, so feel free
to share your thoughts and suggestions through the app or on our
official [social media handles]. Happy Orbiting! <br /><br />Team Atti
</p>
</div>
</div>
</body>
</html>