tio-design-make-experiments 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ATTRIBUTIONS.md +3 -0
- package/README.md +11 -0
- package/guidelines/Guidelines.md +61 -0
- package/index.html +15 -0
- package/package.json +91 -0
- package/postcss.config.mjs +15 -0
- package/src/app/App.tsx +6 -0
- package/src/app/components/design-system/Buttons.tsx +623 -0
- package/src/app/components/design-system/Cards.tsx +123 -0
- package/src/app/components/design-system/Charts.tsx +135 -0
- package/src/app/components/design-system/ColorPalette.tsx +86 -0
- package/src/app/components/design-system/CopyButton.tsx +102 -0
- package/src/app/components/design-system/Forms.tsx +409 -0
- package/src/app/components/design-system/Icons.tsx +140 -0
- package/src/app/components/design-system/ListItems.tsx +234 -0
- package/src/app/components/design-system/Navigation.tsx +344 -0
- package/src/app/components/design-system/Patterns.tsx +235 -0
- package/src/app/components/design-system/PopoverMenu.tsx +81 -0
- package/src/app/components/design-system/SectionHeader.tsx +22 -0
- package/src/app/components/design-system/Spacing.tsx +109 -0
- package/src/app/components/design-system/StatusIndicators.tsx +194 -0
- package/src/app/components/design-system/Typography.tsx +88 -0
- package/src/app/components/figma/ImageWithFallback.tsx +27 -0
- package/src/app/components/ui/accordion.tsx +66 -0
- package/src/app/components/ui/alert-dialog.tsx +157 -0
- package/src/app/components/ui/alert.tsx +66 -0
- package/src/app/components/ui/aspect-ratio.tsx +11 -0
- package/src/app/components/ui/avatar.tsx +53 -0
- package/src/app/components/ui/badge.tsx +46 -0
- package/src/app/components/ui/breadcrumb.tsx +109 -0
- package/src/app/components/ui/button.tsx +58 -0
- package/src/app/components/ui/calendar.tsx +75 -0
- package/src/app/components/ui/card.tsx +92 -0
- package/src/app/components/ui/carousel.tsx +241 -0
- package/src/app/components/ui/chart.tsx +353 -0
- package/src/app/components/ui/checkbox.tsx +32 -0
- package/src/app/components/ui/collapsible.tsx +33 -0
- package/src/app/components/ui/command.tsx +177 -0
- package/src/app/components/ui/context-menu.tsx +252 -0
- package/src/app/components/ui/dialog.tsx +135 -0
- package/src/app/components/ui/drawer.tsx +132 -0
- package/src/app/components/ui/dropdown-menu.tsx +257 -0
- package/src/app/components/ui/form.tsx +168 -0
- package/src/app/components/ui/hover-card.tsx +44 -0
- package/src/app/components/ui/input-otp.tsx +77 -0
- package/src/app/components/ui/input.tsx +21 -0
- package/src/app/components/ui/label.tsx +24 -0
- package/src/app/components/ui/menubar.tsx +276 -0
- package/src/app/components/ui/navigation-menu.tsx +168 -0
- package/src/app/components/ui/pagination.tsx +127 -0
- package/src/app/components/ui/popover.tsx +48 -0
- package/src/app/components/ui/progress.tsx +31 -0
- package/src/app/components/ui/radio-group.tsx +45 -0
- package/src/app/components/ui/resizable.tsx +56 -0
- package/src/app/components/ui/scroll-area.tsx +58 -0
- package/src/app/components/ui/select.tsx +189 -0
- package/src/app/components/ui/separator.tsx +28 -0
- package/src/app/components/ui/sheet.tsx +139 -0
- package/src/app/components/ui/sidebar.tsx +726 -0
- package/src/app/components/ui/skeleton.tsx +13 -0
- package/src/app/components/ui/slider.tsx +63 -0
- package/src/app/components/ui/sonner.tsx +25 -0
- package/src/app/components/ui/switch.tsx +31 -0
- package/src/app/components/ui/table.tsx +116 -0
- package/src/app/components/ui/tabs.tsx +66 -0
- package/src/app/components/ui/textarea.tsx +18 -0
- package/src/app/components/ui/toggle-group.tsx +73 -0
- package/src/app/components/ui/toggle.tsx +47 -0
- package/src/app/components/ui/tooltip.tsx +61 -0
- package/src/app/components/ui/use-mobile.ts +21 -0
- package/src/app/components/ui/utils.ts +6 -0
- package/src/app/pages/DesignSystem.tsx +189 -0
- package/src/app/pages/Team.tsx +168 -0
- package/src/app/routes.tsx +14 -0
- package/src/assets/6276cd19433d265f363bddc7f52f4937da9b1dd4.png +0 -0
- package/src/assets/9d7a018c9a6938d439d9059f82753d232ce63804.png +0 -0
- package/src/imports/Buttons-3-409.tsx +46 -0
- package/src/imports/Buttons-3-962.tsx +155 -0
- package/src/imports/ButtonsAndActions.tsx +139 -0
- package/src/imports/Dashboard.tsx +1914 -0
- package/src/imports/DesignSystem.tsx +6008 -0
- package/src/imports/Forms.tsx +1088 -0
- package/src/imports/Navigation-17-3259.tsx +564 -0
- package/src/imports/Navigation-18-957.tsx +873 -0
- package/src/imports/Wireframe.tsx +112 -0
- package/src/imports/svg-1ifosis1tx.ts +3 -0
- package/src/imports/svg-5spfd.tsx +1 -0
- package/src/imports/svg-6180by7m37.ts +3 -0
- package/src/imports/svg-guy0p.tsx +1 -0
- package/src/imports/svg-hm2n0.tsx +2 -0
- package/src/imports/svg-j8o95ccqq7.ts +26 -0
- package/src/imports/svg-liuy2nykz3.ts +10 -0
- package/src/imports/svg-pp9c3.tsx +1 -0
- package/src/imports/svg-pr0k9194w9.ts +33 -0
- package/src/imports/svg-umftvfphsk.ts +48 -0
- package/src/imports/svg-vbi95q76mb.ts +23 -0
- package/src/imports/svg-vxjpl.tsx +1 -0
- package/src/imports/svg-wl30wxxv53.ts +3 -0
- package/src/main.tsx +7 -0
- package/src/styles/fonts.css +1 -0
- package/src/styles/forms.css +181 -0
- package/src/styles/header.css +48 -0
- package/src/styles/index.css +7 -0
- package/src/styles/navlinks.css +112 -0
- package/src/styles/popover.css +48 -0
- package/src/styles/tailwind.css +4 -0
- package/src/styles/theme.css +312 -0
- package/vite.config.ts +38 -0
|
@@ -0,0 +1,564 @@
|
|
|
1
|
+
import svgPaths from "./svg-vbi95q76mb";
|
|
2
|
+
import imgProfileDropdown from "figma:asset/6276cd19433d265f363bddc7f52f4937da9b1dd4.png";
|
|
3
|
+
import { imgLogoTestinator } from "./svg-vxjpl";
|
|
4
|
+
|
|
5
|
+
function SpacerTestio() {
|
|
6
|
+
return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
function SpacerTestio1() {
|
|
10
|
+
return (
|
|
11
|
+
<div className="h-[20px] relative shrink-0 w-full" data-name="spacer-testio">
|
|
12
|
+
<div className="absolute bottom-1/2 left-0 right-0 top-0" data-name="spacer" />
|
|
13
|
+
</div>
|
|
14
|
+
);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
function LogoTestinator() {
|
|
18
|
+
return (
|
|
19
|
+
<div className="absolute inset-[0_0.44%_0_0] mask-alpha mask-intersect mask-no-clip mask-no-repeat mask-position-[0px_0px] mask-size-[148px_34px]" data-name="Logo-testinator" style={{ maskImage: `url('${imgLogoTestinator}')` }}>
|
|
20
|
+
<svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 147.351 34.0003">
|
|
21
|
+
<g id="Logo-testinator">
|
|
22
|
+
<path d={svgPaths.pd3f4900} fill="var(--fill-0, white)" id="Vector" />
|
|
23
|
+
<path d={svgPaths.p2ef9e700} fill="var(--fill-0, white)" id="Vector_2" />
|
|
24
|
+
<path d={svgPaths.p1507e900} fill="var(--fill-0, white)" id="Vector_3" />
|
|
25
|
+
<path d={svgPaths.p63b5500} fill="var(--fill-0, white)" id="Vector_4" />
|
|
26
|
+
<path d={svgPaths.p73e5c00} fill="var(--fill-0, white)" id="Vector_5" />
|
|
27
|
+
<path d={svgPaths.p269eee80} fill="var(--fill-0, white)" id="Vector_6" />
|
|
28
|
+
<path d={svgPaths.p32f5f900} fill="var(--fill-0, white)" id="Vector_7" />
|
|
29
|
+
<path d={svgPaths.p166df900} fill="var(--fill-0, white)" id="Vector_8" />
|
|
30
|
+
<path d={svgPaths.p3af52100} fill="var(--fill-0, white)" id="Vector_9" />
|
|
31
|
+
<path d={svgPaths.p224ff200} fill="var(--fill-0, white)" id="Vector_10" />
|
|
32
|
+
<path d={svgPaths.p29a28100} fill="var(--fill-0, white)" id="Vector_11" />
|
|
33
|
+
<path d={svgPaths.p38feaa80} fill="var(--fill-0, white)" id="Vector_12" />
|
|
34
|
+
<path d={svgPaths.p1649b700} fill="var(--fill-0, white)" id="Vector_13" />
|
|
35
|
+
<path d={svgPaths.p5b04f70} fill="var(--fill-0, white)" id="Vector_14" />
|
|
36
|
+
<path d={svgPaths.pafbcd00} fill="var(--fill-0, white)" id="Vector_15" />
|
|
37
|
+
<path d={svgPaths.p94ead80} fill="var(--fill-0, white)" id="Vector_16" />
|
|
38
|
+
<path d={svgPaths.p3e1a5280} fill="var(--fill-0, white)" id="Vector_17" />
|
|
39
|
+
<g id="Group">
|
|
40
|
+
<path d={svgPaths.p288b2800} fill="var(--fill-0, #7954FF)" id="Vector_18" />
|
|
41
|
+
</g>
|
|
42
|
+
<path clipRule="evenodd" d={svgPaths.p1f8b5980} fill="var(--fill-0, #78EAC1)" fillRule="evenodd" id="Vector_19" />
|
|
43
|
+
</g>
|
|
44
|
+
</svg>
|
|
45
|
+
</div>
|
|
46
|
+
);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
function Group() {
|
|
50
|
+
return (
|
|
51
|
+
<div className="absolute contents inset-[0_0.44%_0_0]" data-name="Group">
|
|
52
|
+
<LogoTestinator />
|
|
53
|
+
</div>
|
|
54
|
+
);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
function ClipPathGroup() {
|
|
58
|
+
return (
|
|
59
|
+
<div className="absolute contents inset-0" data-name="Clip path group">
|
|
60
|
+
<Group />
|
|
61
|
+
</div>
|
|
62
|
+
);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
function Logo() {
|
|
66
|
+
return (
|
|
67
|
+
<div className="h-[34px] overflow-clip relative shrink-0 w-[148px]" data-name="Logo">
|
|
68
|
+
<svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 32 32">
|
|
69
|
+
<g id="agenticqa_logo_purpleteal_white" />
|
|
70
|
+
</svg>
|
|
71
|
+
<ClipPathGroup />
|
|
72
|
+
</div>
|
|
73
|
+
);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
function IconPlus() {
|
|
77
|
+
return (
|
|
78
|
+
<div className="relative shrink-0 size-[20px]" data-name="icon-plus">
|
|
79
|
+
<svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
|
|
80
|
+
<g id="icon-plus">
|
|
81
|
+
<g id="Rectangle 10" />
|
|
82
|
+
<path d={svgPaths.p185c8f80} fill="var(--fill-0, white)" id="Union" />
|
|
83
|
+
</g>
|
|
84
|
+
</svg>
|
|
85
|
+
</div>
|
|
86
|
+
);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
function IconWrapper() {
|
|
90
|
+
return (
|
|
91
|
+
<div className="content-stretch flex h-[20px] items-center pr-[8px] relative shrink-0" data-name="Icon wrapper">
|
|
92
|
+
<IconPlus />
|
|
93
|
+
</div>
|
|
94
|
+
);
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
function NavlinkHeader() {
|
|
98
|
+
return (
|
|
99
|
+
<div className="content-stretch flex h-[34px] items-center px-[15px] relative rounded-[30px] shrink-0" data-name="Navlink header">
|
|
100
|
+
<IconWrapper />
|
|
101
|
+
<p className="font-['Source_Sans_3:Regular',sans-serif] leading-[14px] not-italic relative shrink-0 text-[16px] text-white uppercase">New Test Session</p>
|
|
102
|
+
</div>
|
|
103
|
+
);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
function NavlinkHeader1() {
|
|
107
|
+
return (
|
|
108
|
+
<div className="content-stretch flex h-[34px] items-center px-[15px] relative rounded-[30px] shrink-0" data-name="Navlink header">
|
|
109
|
+
<p className="font-['Source_Sans_3:Regular',sans-serif] leading-[14px] not-italic relative shrink-0 text-[16px] text-white uppercase">Test Sessions</p>
|
|
110
|
+
</div>
|
|
111
|
+
);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
function NavlinkHeader2() {
|
|
115
|
+
return (
|
|
116
|
+
<div className="content-stretch flex h-[34px] items-center px-[15px] relative rounded-[30px] shrink-0" data-name="Navlink header">
|
|
117
|
+
<p className="font-['Source_Sans_3:Regular',sans-serif] leading-[14px] not-italic relative shrink-0 text-[16px] text-white uppercase">Check Suites</p>
|
|
118
|
+
</div>
|
|
119
|
+
);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
function Left() {
|
|
123
|
+
return (
|
|
124
|
+
<div className="flex-[1_0_0] min-h-px min-w-px relative" data-name="Left">
|
|
125
|
+
<div className="flex flex-row items-center size-full">
|
|
126
|
+
<div className="content-stretch flex gap-[5px] items-center pl-[32px] relative w-full">
|
|
127
|
+
<NavlinkHeader />
|
|
128
|
+
<NavlinkHeader1 />
|
|
129
|
+
<NavlinkHeader2 />
|
|
130
|
+
</div>
|
|
131
|
+
</div>
|
|
132
|
+
</div>
|
|
133
|
+
);
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
function ProfileDropdown() {
|
|
137
|
+
return (
|
|
138
|
+
<div className="overflow-clip relative rounded-[100px] shrink-0 size-[40px]" data-name="Profile dropdown">
|
|
139
|
+
<img alt="" className="absolute inset-0 max-w-none object-cover pointer-events-none size-full" src={imgProfileDropdown} />
|
|
140
|
+
</div>
|
|
141
|
+
);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
function Right() {
|
|
145
|
+
return (
|
|
146
|
+
<div className="content-stretch flex items-center relative shrink-0" data-name="Right">
|
|
147
|
+
<ProfileDropdown />
|
|
148
|
+
</div>
|
|
149
|
+
);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
function Wrapper() {
|
|
153
|
+
return (
|
|
154
|
+
<div className="content-stretch flex items-center justify-between px-[50px] relative shrink-0 w-[1600px]" data-name="WRAPPER">
|
|
155
|
+
<Logo />
|
|
156
|
+
<Left />
|
|
157
|
+
<Right />
|
|
158
|
+
</div>
|
|
159
|
+
);
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
function HeaderCustomerUi() {
|
|
163
|
+
return (
|
|
164
|
+
<div className="bg-[#1d1d1d] content-stretch flex h-[70px] items-center justify-between py-[11px] relative shrink-0 w-full" data-name="Header - Customer UI">
|
|
165
|
+
<div aria-hidden="true" className="absolute border-[#262626] border-b border-solid inset-0 pointer-events-none shadow-[0px_4px_8px_0px_rgba(0,0,0,0.1)]" />
|
|
166
|
+
<Wrapper />
|
|
167
|
+
</div>
|
|
168
|
+
);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
function SpacerTestio2() {
|
|
172
|
+
return (
|
|
173
|
+
<div className="relative shrink-0 size-[30px]" data-name="spacer-testio">
|
|
174
|
+
<div className="absolute inset-[0_66.67%_66.67%_0]" data-name="spacer" />
|
|
175
|
+
</div>
|
|
176
|
+
);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
function SpacerTestio3() {
|
|
180
|
+
return (
|
|
181
|
+
<div className="h-[20px] relative shrink-0 w-full" data-name="spacer-testio">
|
|
182
|
+
<div className="absolute bottom-1/2 left-0 right-0 top-0" data-name="spacer" />
|
|
183
|
+
</div>
|
|
184
|
+
);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
function LogoTestinator1() {
|
|
188
|
+
return (
|
|
189
|
+
<div className="absolute inset-[0_0.44%_0_0] mask-alpha mask-intersect mask-no-clip mask-no-repeat mask-position-[0px_0px] mask-size-[148px_34px]" data-name="Logo-testinator" style={{ maskImage: `url('${imgLogoTestinator}')` }}>
|
|
190
|
+
<svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 147.351 34.0003">
|
|
191
|
+
<g id="Logo-testinator">
|
|
192
|
+
<path d={svgPaths.pd3f4900} fill="var(--fill-0, white)" id="Vector" />
|
|
193
|
+
<path d={svgPaths.p2ef9e700} fill="var(--fill-0, white)" id="Vector_2" />
|
|
194
|
+
<path d={svgPaths.p1507e900} fill="var(--fill-0, white)" id="Vector_3" />
|
|
195
|
+
<path d={svgPaths.p63b5500} fill="var(--fill-0, white)" id="Vector_4" />
|
|
196
|
+
<path d={svgPaths.p73e5c00} fill="var(--fill-0, white)" id="Vector_5" />
|
|
197
|
+
<path d={svgPaths.p269eee80} fill="var(--fill-0, white)" id="Vector_6" />
|
|
198
|
+
<path d={svgPaths.p32f5f900} fill="var(--fill-0, white)" id="Vector_7" />
|
|
199
|
+
<path d={svgPaths.p166df900} fill="var(--fill-0, white)" id="Vector_8" />
|
|
200
|
+
<path d={svgPaths.p3af52100} fill="var(--fill-0, white)" id="Vector_9" />
|
|
201
|
+
<path d={svgPaths.p224ff200} fill="var(--fill-0, white)" id="Vector_10" />
|
|
202
|
+
<path d={svgPaths.p29a28100} fill="var(--fill-0, white)" id="Vector_11" />
|
|
203
|
+
<path d={svgPaths.p38feaa80} fill="var(--fill-0, white)" id="Vector_12" />
|
|
204
|
+
<path d={svgPaths.p1649b700} fill="var(--fill-0, white)" id="Vector_13" />
|
|
205
|
+
<path d={svgPaths.p5b04f70} fill="var(--fill-0, white)" id="Vector_14" />
|
|
206
|
+
<path d={svgPaths.pafbcd00} fill="var(--fill-0, white)" id="Vector_15" />
|
|
207
|
+
<path d={svgPaths.p94ead80} fill="var(--fill-0, white)" id="Vector_16" />
|
|
208
|
+
<path d={svgPaths.p3e1a5280} fill="var(--fill-0, white)" id="Vector_17" />
|
|
209
|
+
<g id="Group">
|
|
210
|
+
<path d={svgPaths.p288b2800} fill="var(--fill-0, #7954FF)" id="Vector_18" />
|
|
211
|
+
</g>
|
|
212
|
+
<path clipRule="evenodd" d={svgPaths.p1f8b5980} fill="var(--fill-0, #78EAC1)" fillRule="evenodd" id="Vector_19" />
|
|
213
|
+
</g>
|
|
214
|
+
</svg>
|
|
215
|
+
</div>
|
|
216
|
+
);
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
function Group1() {
|
|
220
|
+
return (
|
|
221
|
+
<div className="absolute contents inset-[0_0.44%_0_0]" data-name="Group">
|
|
222
|
+
<LogoTestinator1 />
|
|
223
|
+
</div>
|
|
224
|
+
);
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
function ClipPathGroup1() {
|
|
228
|
+
return (
|
|
229
|
+
<div className="absolute contents inset-0" data-name="Clip path group">
|
|
230
|
+
<Group1 />
|
|
231
|
+
</div>
|
|
232
|
+
);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
function Logo1() {
|
|
236
|
+
return (
|
|
237
|
+
<div className="h-[34px] overflow-clip relative shrink-0 w-[148px]" data-name="Logo">
|
|
238
|
+
<svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 32 32">
|
|
239
|
+
<g id="agenticqa_logo_purpleteal_white" />
|
|
240
|
+
</svg>
|
|
241
|
+
<ClipPathGroup1 />
|
|
242
|
+
</div>
|
|
243
|
+
);
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
function Left1() {
|
|
247
|
+
return (
|
|
248
|
+
<div className="flex-[1_0_0] min-h-px min-w-px relative" data-name="Left">
|
|
249
|
+
<div className="flex flex-row items-center size-full">
|
|
250
|
+
<div className="content-stretch flex gap-[5px] items-center pl-[32px] w-full" />
|
|
251
|
+
</div>
|
|
252
|
+
</div>
|
|
253
|
+
);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
function NavlinkHeader3() {
|
|
257
|
+
return (
|
|
258
|
+
<div className="bg-[#78eac1] content-stretch flex h-[34px] items-center px-[15px] relative rounded-[30px] shrink-0" data-name="Navlink header">
|
|
259
|
+
<p className="font-['Source_Sans_3:Regular',sans-serif] leading-[14px] not-italic relative shrink-0 text-[#1d1d1d] text-[16px] uppercase">Sign in</p>
|
|
260
|
+
</div>
|
|
261
|
+
);
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
function Right1() {
|
|
265
|
+
return (
|
|
266
|
+
<div className="content-stretch flex items-center relative shrink-0" data-name="Right">
|
|
267
|
+
<NavlinkHeader3 />
|
|
268
|
+
</div>
|
|
269
|
+
);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
function Wrapper1() {
|
|
273
|
+
return (
|
|
274
|
+
<div className="content-stretch flex items-center justify-between px-[50px] relative shrink-0 w-[1600px]" data-name="WRAPPER">
|
|
275
|
+
<Logo1 />
|
|
276
|
+
<Left1 />
|
|
277
|
+
<Right1 />
|
|
278
|
+
</div>
|
|
279
|
+
);
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
function HeaderCustomerUi1() {
|
|
283
|
+
return (
|
|
284
|
+
<div className="bg-[#1d1d1d] content-stretch flex h-[70px] items-center justify-between py-[11px] relative shrink-0 w-full" data-name="Header - Customer UI">
|
|
285
|
+
<div aria-hidden="true" className="absolute border-[#262626] border-b border-solid inset-0 pointer-events-none shadow-[0px_4px_8px_0px_rgba(0,0,0,0.1)]" />
|
|
286
|
+
<Wrapper1 />
|
|
287
|
+
</div>
|
|
288
|
+
);
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
function SpacerTestio4() {
|
|
292
|
+
return (
|
|
293
|
+
<div className="relative shrink-0 size-[50px]" data-name="spacer-testio">
|
|
294
|
+
<div className="absolute inset-[0_80%_80%_0]" data-name="spacer" />
|
|
295
|
+
</div>
|
|
296
|
+
);
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
function SpacerTestio5() {
|
|
300
|
+
return <div className="shrink-0 size-[10px]" data-name="spacer-testio" />;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
function SpacerTestio6() {
|
|
304
|
+
return (
|
|
305
|
+
<div className="h-[20px] relative shrink-0 w-full" data-name="spacer-testio">
|
|
306
|
+
<div className="absolute bottom-1/2 left-0 right-0 top-0" data-name="spacer" />
|
|
307
|
+
</div>
|
|
308
|
+
);
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
function NavlinkHeader4() {
|
|
312
|
+
return (
|
|
313
|
+
<div className="content-stretch flex h-[34px] items-center px-[15px] relative rounded-[30px] shrink-0" data-name="Navlink header">
|
|
314
|
+
<p className="font-['Source_Sans_3:Regular',sans-serif] leading-[14px] not-italic relative shrink-0 text-[16px] text-white uppercase">Nav link</p>
|
|
315
|
+
</div>
|
|
316
|
+
);
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
function NavlinkHeader5() {
|
|
320
|
+
return (
|
|
321
|
+
<div className="content-stretch flex h-[34px] items-center px-[15px] relative rounded-[30px] shrink-0" data-name="Navlink header">
|
|
322
|
+
<p className="font-['Source_Sans_3:Regular',sans-serif] leading-[14px] not-italic relative shrink-0 text-[16px] text-white uppercase">Active</p>
|
|
323
|
+
<div className="absolute bg-[#7954ff] bottom-0 h-[2px] left-[15px] right-[15px]" data-name="Marker" />
|
|
324
|
+
</div>
|
|
325
|
+
);
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
function NavlinkHeader6() {
|
|
329
|
+
return (
|
|
330
|
+
<div className="bg-[#7954ff] content-stretch flex h-[34px] items-center px-[15px] relative rounded-[30px] shrink-0" data-name="Navlink header">
|
|
331
|
+
<p className="font-['Source_Sans_3:Regular',sans-serif] leading-[14px] not-italic relative shrink-0 text-[16px] text-white uppercase">Hover</p>
|
|
332
|
+
</div>
|
|
333
|
+
);
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
function NavlinkHeader7() {
|
|
337
|
+
return (
|
|
338
|
+
<div className="bg-[#7954ff] content-stretch flex h-[34px] items-center px-[15px] relative rounded-[30px] shrink-0" data-name="Navlink header">
|
|
339
|
+
<p className="font-['Source_Sans_3:Regular',sans-serif] leading-[14px] not-italic relative shrink-0 text-[16px] text-white uppercase">Active Hover</p>
|
|
340
|
+
<div className="absolute bg-[#7954ff] bottom-0 h-[2px] left-[15px] right-[15px]" data-name="Marker" />
|
|
341
|
+
</div>
|
|
342
|
+
);
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
function NavlinkHeader8() {
|
|
346
|
+
return (
|
|
347
|
+
<div className="bg-[#78eac1] content-stretch flex h-[34px] items-center px-[15px] relative rounded-[30px] shrink-0" data-name="Navlink header">
|
|
348
|
+
<p className="font-['Source_Sans_3:Regular',sans-serif] leading-[14px] not-italic relative shrink-0 text-[#1d1d1d] text-[16px] uppercase">Highlight</p>
|
|
349
|
+
</div>
|
|
350
|
+
);
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
function Row() {
|
|
354
|
+
return (
|
|
355
|
+
<div className="content-stretch flex gap-[10px] items-start relative shrink-0" data-name="ROW">
|
|
356
|
+
<NavlinkHeader4 />
|
|
357
|
+
<NavlinkHeader5 />
|
|
358
|
+
<NavlinkHeader6 />
|
|
359
|
+
<NavlinkHeader7 />
|
|
360
|
+
<NavlinkHeader8 />
|
|
361
|
+
</div>
|
|
362
|
+
);
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
function SpacerTestio7() {
|
|
366
|
+
return (
|
|
367
|
+
<div className="relative shrink-0 size-[30px]" data-name="spacer-testio">
|
|
368
|
+
<div className="absolute inset-[0_66.67%_66.67%_0]" data-name="spacer" />
|
|
369
|
+
</div>
|
|
370
|
+
);
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
function SpacerTestio8() {
|
|
374
|
+
return (
|
|
375
|
+
<div className="h-[20px] relative shrink-0 w-full" data-name="spacer-testio">
|
|
376
|
+
<div className="absolute bottom-1/2 left-0 right-0 top-0" data-name="spacer" />
|
|
377
|
+
</div>
|
|
378
|
+
);
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
function IconTest() {
|
|
382
|
+
return (
|
|
383
|
+
<div className="relative shrink-0 size-[20px]" data-name="icon-test">
|
|
384
|
+
<svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
|
|
385
|
+
<g id="icon-test">
|
|
386
|
+
<path clipRule="evenodd" d={svgPaths.p390b0800} fill="var(--fill-0, white)" fillRule="evenodd" id="Union" />
|
|
387
|
+
</g>
|
|
388
|
+
</svg>
|
|
389
|
+
</div>
|
|
390
|
+
);
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
function IconWrapper1() {
|
|
394
|
+
return (
|
|
395
|
+
<div className="content-stretch flex h-[20px] items-center pr-[8px] relative shrink-0" data-name="Icon wrapper">
|
|
396
|
+
<IconTest />
|
|
397
|
+
</div>
|
|
398
|
+
);
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
function NavlinkHeader9() {
|
|
402
|
+
return (
|
|
403
|
+
<div className="content-stretch flex h-[34px] items-center px-[15px] relative rounded-[30px] shrink-0" data-name="Navlink header">
|
|
404
|
+
<IconWrapper1 />
|
|
405
|
+
<p className="font-['Source_Sans_3:Regular',sans-serif] leading-[14px] not-italic relative shrink-0 text-[16px] text-white uppercase">Nav link</p>
|
|
406
|
+
</div>
|
|
407
|
+
);
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
function IconTest1() {
|
|
411
|
+
return (
|
|
412
|
+
<div className="relative shrink-0 size-[20px]" data-name="icon-test">
|
|
413
|
+
<svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
|
|
414
|
+
<g id="icon-test">
|
|
415
|
+
<path clipRule="evenodd" d={svgPaths.p390b0800} fill="var(--fill-0, white)" fillRule="evenodd" id="Union" />
|
|
416
|
+
</g>
|
|
417
|
+
</svg>
|
|
418
|
+
</div>
|
|
419
|
+
);
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
function IconWrapper2() {
|
|
423
|
+
return (
|
|
424
|
+
<div className="content-stretch flex h-[20px] items-center pr-[8px] relative shrink-0" data-name="Icon wrapper">
|
|
425
|
+
<IconTest1 />
|
|
426
|
+
</div>
|
|
427
|
+
);
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
function NavlinkHeader10() {
|
|
431
|
+
return (
|
|
432
|
+
<div className="content-stretch flex h-[34px] items-center px-[15px] relative rounded-[30px] shrink-0" data-name="Navlink header">
|
|
433
|
+
<IconWrapper2 />
|
|
434
|
+
<p className="font-['Source_Sans_3:Regular',sans-serif] leading-[14px] not-italic relative shrink-0 text-[16px] text-white uppercase">Active</p>
|
|
435
|
+
<div className="absolute bg-[#7954ff] bottom-0 h-[2px] left-[15px] right-[15px]" data-name="Marker" />
|
|
436
|
+
</div>
|
|
437
|
+
);
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
function IconTest2() {
|
|
441
|
+
return (
|
|
442
|
+
<div className="relative shrink-0 size-[20px]" data-name="icon-test">
|
|
443
|
+
<svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
|
|
444
|
+
<g id="icon-test">
|
|
445
|
+
<path clipRule="evenodd" d={svgPaths.p390b0800} fill="var(--fill-0, white)" fillRule="evenodd" id="Union" />
|
|
446
|
+
</g>
|
|
447
|
+
</svg>
|
|
448
|
+
</div>
|
|
449
|
+
);
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
function IconWrapper3() {
|
|
453
|
+
return (
|
|
454
|
+
<div className="content-stretch flex h-[20px] items-center pr-[8px] relative shrink-0" data-name="Icon wrapper">
|
|
455
|
+
<IconTest2 />
|
|
456
|
+
</div>
|
|
457
|
+
);
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
function NavlinkHeader11() {
|
|
461
|
+
return (
|
|
462
|
+
<div className="bg-[#7954ff] content-stretch flex h-[34px] items-center px-[15px] relative rounded-[30px] shrink-0" data-name="Navlink header">
|
|
463
|
+
<IconWrapper3 />
|
|
464
|
+
<p className="font-['Source_Sans_3:Regular',sans-serif] leading-[14px] not-italic relative shrink-0 text-[16px] text-white uppercase">Hover</p>
|
|
465
|
+
</div>
|
|
466
|
+
);
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
function IconTest3() {
|
|
470
|
+
return (
|
|
471
|
+
<div className="relative shrink-0 size-[20px]" data-name="icon-test">
|
|
472
|
+
<svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
|
|
473
|
+
<g id="icon-test">
|
|
474
|
+
<path clipRule="evenodd" d={svgPaths.p390b0800} fill="var(--fill-0, white)" fillRule="evenodd" id="Union" />
|
|
475
|
+
</g>
|
|
476
|
+
</svg>
|
|
477
|
+
</div>
|
|
478
|
+
);
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
function IconWrapper4() {
|
|
482
|
+
return (
|
|
483
|
+
<div className="content-stretch flex h-[20px] items-center pr-[8px] relative shrink-0" data-name="Icon wrapper">
|
|
484
|
+
<IconTest3 />
|
|
485
|
+
</div>
|
|
486
|
+
);
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
function NavlinkHeader12() {
|
|
490
|
+
return (
|
|
491
|
+
<div className="bg-[#7954ff] content-stretch flex h-[34px] items-center px-[15px] relative rounded-[30px] shrink-0" data-name="Navlink header">
|
|
492
|
+
<IconWrapper4 />
|
|
493
|
+
<p className="font-['Source_Sans_3:Regular',sans-serif] leading-[14px] not-italic relative shrink-0 text-[16px] text-white uppercase">Active Hover</p>
|
|
494
|
+
<div className="absolute bg-[#7954ff] bottom-0 h-[2px] left-[15px] right-[15px]" data-name="Marker" />
|
|
495
|
+
</div>
|
|
496
|
+
);
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
function IconTest4() {
|
|
500
|
+
return (
|
|
501
|
+
<div className="relative shrink-0 size-[20px]" data-name="icon-test">
|
|
502
|
+
<svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 20 20">
|
|
503
|
+
<g id="icon-test">
|
|
504
|
+
<path clipRule="evenodd" d={svgPaths.p390b0800} fill="var(--fill-0, #1D1D1D)" fillRule="evenodd" id="Union" />
|
|
505
|
+
</g>
|
|
506
|
+
</svg>
|
|
507
|
+
</div>
|
|
508
|
+
);
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
function IconWrapper5() {
|
|
512
|
+
return (
|
|
513
|
+
<div className="content-stretch flex h-[20px] items-center pr-[8px] relative shrink-0" data-name="Icon wrapper">
|
|
514
|
+
<IconTest4 />
|
|
515
|
+
</div>
|
|
516
|
+
);
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
function NavlinkHeader13() {
|
|
520
|
+
return (
|
|
521
|
+
<div className="bg-[#78eac1] content-stretch flex h-[34px] items-center px-[15px] relative rounded-[30px] shrink-0" data-name="Navlink header">
|
|
522
|
+
<IconWrapper5 />
|
|
523
|
+
<p className="font-['Source_Sans_3:Regular',sans-serif] leading-[14px] not-italic relative shrink-0 text-[#1d1d1d] text-[16px] uppercase">Highlight</p>
|
|
524
|
+
</div>
|
|
525
|
+
);
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
function Row1() {
|
|
529
|
+
return (
|
|
530
|
+
<div className="content-stretch flex gap-[10px] items-start relative shrink-0" data-name="ROW">
|
|
531
|
+
<NavlinkHeader9 />
|
|
532
|
+
<NavlinkHeader10 />
|
|
533
|
+
<NavlinkHeader11 />
|
|
534
|
+
<NavlinkHeader12 />
|
|
535
|
+
<NavlinkHeader13 />
|
|
536
|
+
</div>
|
|
537
|
+
);
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
export default function Navigation() {
|
|
541
|
+
return (
|
|
542
|
+
<div className="bg-[#181818] content-stretch flex flex-col items-start p-[50px] relative size-full" data-name="Navigation">
|
|
543
|
+
<p className="font-['Source_Sans_Pro:Light',sans-serif] leading-[28px] min-w-full not-italic relative shrink-0 text-[25px] text-white w-[min-content] whitespace-pre-wrap">Header</p>
|
|
544
|
+
<SpacerTestio />
|
|
545
|
+
<p className="font-['Source_Sans_3:Regular',sans-serif] leading-[22px] min-w-full not-italic relative shrink-0 text-[16px] text-white w-[min-content] whitespace-pre-wrap">Header when the user is signed in</p>
|
|
546
|
+
<SpacerTestio1 />
|
|
547
|
+
<HeaderCustomerUi />
|
|
548
|
+
<SpacerTestio2 />
|
|
549
|
+
<p className="font-['Source_Sans_3:Regular',sans-serif] leading-[22px] min-w-full not-italic relative shrink-0 text-[16px] text-white w-[min-content] whitespace-pre-wrap">Header when the user is not signed in</p>
|
|
550
|
+
<SpacerTestio3 />
|
|
551
|
+
<HeaderCustomerUi1 />
|
|
552
|
+
<SpacerTestio4 />
|
|
553
|
+
<p className="font-['Source_Sans_Pro:Light',sans-serif] leading-[28px] min-w-full not-italic relative shrink-0 text-[25px] text-white w-[min-content] whitespace-pre-wrap">Navlinks</p>
|
|
554
|
+
<SpacerTestio5 />
|
|
555
|
+
<p className="font-['Source_Sans_3:Regular',sans-serif] leading-[22px] not-italic relative shrink-0 text-[16px] text-white">Navlinks used in the header</p>
|
|
556
|
+
<SpacerTestio6 />
|
|
557
|
+
<Row />
|
|
558
|
+
<SpacerTestio7 />
|
|
559
|
+
<p className="font-['Source_Sans_3:Regular',sans-serif] leading-[22px] not-italic relative shrink-0 text-[16px] text-white">Navlinks with icons</p>
|
|
560
|
+
<SpacerTestio8 />
|
|
561
|
+
<Row1 />
|
|
562
|
+
</div>
|
|
563
|
+
);
|
|
564
|
+
}
|