Skip to content

Commit 902ab81

Browse files
authored
Add user management features to team insights page (#690)
1 parent 2359138 commit 902ab81

File tree

3 files changed

+86
-20
lines changed

3 files changed

+86
-20
lines changed
274 KB
Loading
443 KB
Loading

docs/src/components/OnlineTeamManager.astro

Lines changed: 86 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,101 @@
11
---
22
import Feature from "./Feature.astro";
3+
4+
import userSettingsImage from "../assets/features/user-settings.png";
5+
import subscriptionSettingsImage from "../assets/features/subscription-settings.png";
36
---
47

58
<style>
69
section {
7-
padding: 8rem 0;
10+
padding: 4rem 0;
811

912
background-color: #101010;
13+
14+
@media (min-width: 800px) {
15+
padding-top: 8rem;
16+
padding-bottom: 8rem;
17+
}
18+
}
19+
20+
.feature-wrapper {
21+
&:not(:first-child) {
22+
margin-top: 4rem;
23+
24+
@media (min-width: 800px) {
25+
margin-top: 8rem;
26+
}
27+
}
28+
29+
&:not(:last-child) {
30+
margin-bottom: 4rem;
31+
32+
@media (min-width: 800px) {
33+
margin-bottom: 8rem;
34+
}
35+
}
1036
}
1137
</style>
1238

1339
<section>
14-
<Feature
15-
data={{
16-
name: "Online Team Manager",
17-
tagLine: "Browse insights and manage seats",
18-
asset: {
19-
type: "video",
20-
path: "/features/team-insights-dashboard.mp4",
21-
alt: "RocketSim for Teams dashboard. Showing the build insights page. It is showing build times, build count and breakdown charts for the an Xcode project.",
22-
alignment: "full-width",
23-
columnSpan: 12,
24-
},
25-
}}
26-
>
27-
<p>
28-
Configure workspaces, select specific schemes, browse build durations and
29-
benchmarks. RocketSim's Team Manager puts you in full control of your
30-
team's productivity.
31-
</p>
32-
</Feature>
40+
<div class="feature-wrapper">
41+
<Feature
42+
data={{
43+
name: "Online Team Manager",
44+
tagLine: "Browse insights and manage seats",
45+
asset: {
46+
type: "video",
47+
path: "/features/team-insights-dashboard.mp4",
48+
alt: "RocketSim for Teams dashboard. Showing the build insights page. It is showing build times, build count and breakdown charts for the an Xcode project.",
49+
alignment: "full-width",
50+
columnSpan: 12,
51+
},
52+
}}
53+
>
54+
<p>
55+
Configure workspaces, select specific schemes, browse build durations
56+
and benchmarks. RocketSim's Team Manager puts you in full control of
57+
your team's productivity.
58+
</p>
59+
</Feature>
60+
</div>
61+
<div class="feature-wrapper">
62+
<Feature
63+
data={{
64+
name: "User & seat management",
65+
asset: {
66+
type: "image",
67+
path: userSettingsImage,
68+
alt: "RocketSim for Teams dashboard. Showing the user setting page. It is showing a license with two active users and one user that is invited. The user can add or remove users from the license and give them roles.",
69+
alignment: "right",
70+
columnSpan: 8,
71+
},
72+
}}
73+
>
74+
<p>
75+
Manage your team and their access to RocketSim. Invite users, assign
76+
roles, and manage seats.
77+
</p>
78+
</Feature>
79+
</div>
80+
<div class="feature-wrapper">
81+
<Feature
82+
data={{
83+
name: "License management",
84+
asset: {
85+
type: "image",
86+
path: subscriptionSettingsImage,
87+
alt: "RocketSim for Teams dashboard. Showing the subscription setting page. It is showing a license key, expiry date, and the number of used seats. The user can also manage its subscription.",
88+
alignment: "left",
89+
columnSpan: 8,
90+
},
91+
}}
92+
>
93+
<p>
94+
Find your license key, expiry date, and the number of (used) seats.
95+
Manage your billing and subscription data.
96+
</p>
97+
</Feature>
98+
</div>
3399
</section>
34100

35101
<script>

0 commit comments

Comments
 (0)