@@ -12,11 +12,12 @@ const githubUrl = import.meta.env.PUBLIC_GITHUB_URL;
12
12
const linkedinUrl = import .meta .env .PUBLIC_LINKEDIN_URL ;
13
13
const xUrl = import .meta .env .PUBLIC_X_URL ;
14
14
const youtubeUrl = import .meta .env .PUBLIC_YOUTUBE_URL ;
15
- const bookaDemoUrl = import .meta .env .PUBLIC_BOOK_A_DEMO_URL ;
15
+ const signUpUrl = import .meta .env .SIGN_UP_URL ;
16
+ const logInUrl = import .meta .env .LOG_IN_URL ;
16
17
17
18
const navigation = {
18
19
product: [
19
- { name: " Book a demo " , href: bookaDemoUrl },
20
+ { name: " Features " , href: " /features " },
20
21
{ name: " Releases" , href: " /releases" },
21
22
{ name: " Roadmap" , href: " /roadmap" },
22
23
{ name: " Status" , href: " https://status.operately.com" },
@@ -37,10 +38,10 @@ const navigation = {
37
38
},
38
39
{ name: " Jobs" , href: " /jobs" },
39
40
],
40
- legal : [
41
- { name: " Terms of service " , href: " /legal/terms " },
42
- { name: " Privacy policy " , href: " /legal/privacy-policy " },
43
- { name: " Security policy " , href: " /legal/security-policy " },
41
+ getStarted : [
42
+ { name: " Sign up " , href: signUpUrl },
43
+ { name: " Log in " , href: logInUrl },
44
+ { name: " Self-host " , href: " /install " },
44
45
],
45
46
social: [
46
47
{
@@ -69,6 +70,11 @@ const navigation = {
69
70
icon : (props ) => YouTubeIcon (props ),
70
71
},
71
72
],
73
+ legal: [
74
+ { name: " Terms of service" , href: " /legal/terms" },
75
+ { name: " Privacy policy" , href: " /legal/privacy-policy" },
76
+ { name: " Security policy" , href: " /legal/security-policy" },
77
+ ],
72
78
};
73
79
---
74
80
@@ -155,10 +161,10 @@ const navigation = {
155
161
</ul >
156
162
</div >
157
163
<div class =" mt-10 md:mt-0" >
158
- <h3 class =" text-sm/6 font-semibold text-gray-900" >Legal </h3 >
164
+ <h3 class =" text-sm/6 font-semibold text-gray-900" >Get Started </h3 >
159
165
<ul role =" list" class =" mt-6 space-y-4" >
160
166
{
161
- navigation .legal .map ((item ) => (
167
+ navigation .getStarted .map ((item ) => (
162
168
<li >
163
169
<a
164
170
href = { item .href }
@@ -175,13 +181,27 @@ const navigation = {
175
181
</div >
176
182
</div >
177
183
<div class =" mt-16 border-t border-gray-900/10 pt-8 sm:mt-20 lg:mt-24" >
178
- <p class =" text-sm/6 text-gray-600" >
179
- © { new Date ().getFullYear ()} Operately doo · All rights reserved ·
180
- <a
181
- href =" https://github.com/operately/website"
182
- class =" hover:text-operately-blue" >Source</a
183
- >
184
- </p >
184
+ <div class =" flex items-center justify-between" >
185
+ <p class =" text-sm/6 text-gray-600" >
186
+ © { new Date ().getFullYear ()} Operately doo · All rights reserved ·
187
+ <a
188
+ href =" https://github.com/operately/website"
189
+ class =" hover:text-operately-blue" >Source</a
190
+ >
191
+ </p >
192
+ <div class =" flex gap-x-8" >
193
+ {
194
+ navigation .legal .map ((item ) => (
195
+ <a
196
+ href = { item .href }
197
+ class = " text-sm/6 text-gray-600 hover:text-operately-blue"
198
+ >
199
+ { item .name }
200
+ </a >
201
+ ))
202
+ }
203
+ </div >
204
+ </div >
185
205
</div >
186
206
</div >
187
207
</footer >
0 commit comments