xertica-ui 1.0.0

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.
Files changed (141) hide show
  1. package/App.tsx +182 -0
  2. package/README.md +330 -0
  3. package/assets/xertica-logo.svg +38 -0
  4. package/assets/xertica-x-logo.svg +21 -0
  5. package/bin/cli.ts +193 -0
  6. package/components/AssistenteXertica.tsx +2003 -0
  7. package/components/AudioPlayer.tsx +203 -0
  8. package/components/CodeBlock.tsx +242 -0
  9. package/components/DocumentEditor.tsx +504 -0
  10. package/components/ForgotPasswordPage.tsx +170 -0
  11. package/components/FormattedDocument.tsx +87 -0
  12. package/components/HomeContent.tsx +123 -0
  13. package/components/HomePage.tsx +70 -0
  14. package/components/LanguageSelector.tsx +54 -0
  15. package/components/LoginPage.tsx +199 -0
  16. package/components/MarkdownMessage.tsx +62 -0
  17. package/components/ModernChatInput.tsx +502 -0
  18. package/components/PodcastPlayer.tsx +409 -0
  19. package/components/ResetPasswordPage.tsx +234 -0
  20. package/components/Sidebar.tsx +489 -0
  21. package/components/TemplateContent.tsx +629 -0
  22. package/components/TemplatePage.tsx +70 -0
  23. package/components/ThemeToggle.tsx +65 -0
  24. package/components/VerifyEmailPage.tsx +187 -0
  25. package/components/XerticaLogo.tsx +69 -0
  26. package/components/XerticaOrbe.tsx +1339 -0
  27. package/components/XerticaXLogo.tsx +53 -0
  28. package/components/examples/DrawingMapExample.tsx +530 -0
  29. package/components/examples/FilterableMapExample.tsx +380 -0
  30. package/components/examples/LocationPickerExample.tsx +330 -0
  31. package/components/examples/MapExamples.tsx +280 -0
  32. package/components/examples/MapShowcase.tsx +446 -0
  33. package/components/examples/RouteMapExamples.tsx +329 -0
  34. package/components/examples/SimpleFilterableMap.tsx +192 -0
  35. package/components/examples/index.ts +52 -0
  36. package/components/figma/ImageWithFallback.tsx +27 -0
  37. package/components/index.ts +44 -0
  38. package/components/media/AudioPlayer.tsx +278 -0
  39. package/components/media/FloatingMediaWrapper.tsx +166 -0
  40. package/components/media/VideoPlayer.tsx +285 -0
  41. package/components/ui/accordion.tsx +66 -0
  42. package/components/ui/alert-dialog.tsx +159 -0
  43. package/components/ui/alert.tsx +91 -0
  44. package/components/ui/aspect-ratio.tsx +11 -0
  45. package/components/ui/avatar.tsx +65 -0
  46. package/components/ui/badge.tsx +55 -0
  47. package/components/ui/breadcrumb.tsx +109 -0
  48. package/components/ui/button.tsx +78 -0
  49. package/components/ui/calendar.tsx +235 -0
  50. package/components/ui/card.tsx +92 -0
  51. package/components/ui/carousel.tsx +241 -0
  52. package/components/ui/chart.tsx +353 -0
  53. package/components/ui/checkbox.tsx +32 -0
  54. package/components/ui/collapsible.tsx +33 -0
  55. package/components/ui/command.tsx +177 -0
  56. package/components/ui/context-menu.tsx +252 -0
  57. package/components/ui/dialog.tsx +138 -0
  58. package/components/ui/drawer.tsx +134 -0
  59. package/components/ui/dropdown-menu.tsx +257 -0
  60. package/components/ui/empty.tsx +90 -0
  61. package/components/ui/file-upload.tsx +152 -0
  62. package/components/ui/form.tsx +195 -0
  63. package/components/ui/google-maps-loader.tsx +379 -0
  64. package/components/ui/hover-card.tsx +44 -0
  65. package/components/ui/index.ts +242 -0
  66. package/components/ui/input-otp.tsx +77 -0
  67. package/components/ui/input.tsx +38 -0
  68. package/components/ui/label.tsx +24 -0
  69. package/components/ui/map-config.ts +12 -0
  70. package/components/ui/map-layers.tsx +129 -0
  71. package/components/ui/map.exports.ts +31 -0
  72. package/components/ui/map.tsx +412 -0
  73. package/components/ui/menubar.tsx +276 -0
  74. package/components/ui/navigation-menu.tsx +162 -0
  75. package/components/ui/notification-badge.tsx +61 -0
  76. package/components/ui/page-header.tsx +229 -0
  77. package/components/ui/pagination.tsx +127 -0
  78. package/components/ui/popover.tsx +48 -0
  79. package/components/ui/progress.tsx +31 -0
  80. package/components/ui/radio-group.tsx +56 -0
  81. package/components/ui/rating.tsx +102 -0
  82. package/components/ui/resizable.tsx +405 -0
  83. package/components/ui/route-map.tsx +246 -0
  84. package/components/ui/scroll-area.tsx +58 -0
  85. package/components/ui/search.tsx +70 -0
  86. package/components/ui/select.tsx +176 -0
  87. package/components/ui/separator.tsx +28 -0
  88. package/components/ui/sheet.tsx +138 -0
  89. package/components/ui/sidebar.tsx +726 -0
  90. package/components/ui/simple-map.tsx +92 -0
  91. package/components/ui/skeleton.tsx +13 -0
  92. package/components/ui/slider.tsx +58 -0
  93. package/components/ui/sonner.tsx +77 -0
  94. package/components/ui/stats-card.tsx +84 -0
  95. package/components/ui/stepper.tsx +126 -0
  96. package/components/ui/switch.tsx +34 -0
  97. package/components/ui/table.tsx +116 -0
  98. package/components/ui/tabs.tsx +66 -0
  99. package/components/ui/textarea.tsx +26 -0
  100. package/components/ui/timeline.tsx +140 -0
  101. package/components/ui/toggle-group.tsx +71 -0
  102. package/components/ui/toggle.tsx +46 -0
  103. package/components/ui/tooltip.tsx +61 -0
  104. package/components/ui/tree-view.tsx +123 -0
  105. package/components/ui/use-mobile.ts +24 -0
  106. package/components/ui/utils.ts +6 -0
  107. package/components/ui/xertica-assistant.tsx +1420 -0
  108. package/contexts/ApiKeyContext.tsx +123 -0
  109. package/contexts/AssistenteContext.tsx +118 -0
  110. package/contexts/BrandColorsContext.tsx +551 -0
  111. package/contexts/LanguageContext.tsx +36 -0
  112. package/contexts/ThemeContext.tsx +85 -0
  113. package/dist/cli.js +20922 -0
  114. package/eslint.config.js +41 -0
  115. package/guidelines/Guidelines.md +61 -0
  116. package/hooks/useTheme.ts +4 -0
  117. package/imports/Podcast.tsx +389 -0
  118. package/imports/XerticaAi.tsx +46 -0
  119. package/imports/XerticaX.tsx +20 -0
  120. package/imports/svg-aueiaqngck.ts +11 -0
  121. package/imports/svg-v9krss1ozd.ts +16 -0
  122. package/imports/svg-vhrdofe3qe.ts +5 -0
  123. package/index.css +4448 -0
  124. package/index.html +14 -0
  125. package/main.tsx +10 -0
  126. package/package.json +119 -0
  127. package/postcss.config.js +6 -0
  128. package/routes.tsx +33 -0
  129. package/styles/globals.css +15 -0
  130. package/styles/xertica/app-overrides/chat.css +61 -0
  131. package/styles/xertica/app-overrides/scrollbar.css +33 -0
  132. package/styles/xertica/base.css +70 -0
  133. package/styles/xertica/integrations/google-maps.css +76 -0
  134. package/styles/xertica/integrations/sonner.css +73 -0
  135. package/styles/xertica/theme-map.css +88 -0
  136. package/styles/xertica/tokens.css +190 -0
  137. package/tsconfig.json +31 -0
  138. package/tsconfig.node.json +10 -0
  139. package/utils/gemini.ts +140 -0
  140. package/vite-env.d.ts +12 -0
  141. package/vite.config.ts +36 -0
@@ -0,0 +1,41 @@
1
+ import js from '@eslint/js'
2
+ import globals from 'globals'
3
+ import reactHooks from 'eslint-plugin-react-hooks'
4
+ import reactRefresh from 'eslint-plugin-react-refresh'
5
+ import tseslint from '@typescript-eslint/eslint-plugin'
6
+ import tsParser from '@typescript-eslint/parser'
7
+
8
+ export default [
9
+ {
10
+ ignores: ['dist', 'node_modules', '.vite'],
11
+ },
12
+ {
13
+ files: ['**/*.{ts,tsx}'],
14
+ languageOptions: {
15
+ ecmaVersion: 2020,
16
+ globals: globals.browser,
17
+ parser: tsParser,
18
+ parserOptions: {
19
+ ecmaVersion: 'latest',
20
+ sourceType: 'module',
21
+ ecmaFeatures: {
22
+ jsx: true,
23
+ },
24
+ },
25
+ },
26
+ plugins: {
27
+ '@typescript-eslint': tseslint,
28
+ 'react-hooks': reactHooks,
29
+ 'react-refresh': reactRefresh,
30
+ },
31
+ rules: {
32
+ ...reactHooks.configs.recommended.rules,
33
+ 'react-refresh/only-export-components': [
34
+ 'warn',
35
+ { allowConstantExport: true },
36
+ ],
37
+ '@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
38
+ '@typescript-eslint/no-explicit-any': 'warn',
39
+ },
40
+ },
41
+ ]
@@ -0,0 +1,61 @@
1
+ **Add your own guidelines here**
2
+ <!--
3
+
4
+ System Guidelines
5
+
6
+ Use this file to provide the AI with rules and guidelines you want it to follow.
7
+ This template outlines a few examples of things you can add. You can add your own sections and format it to suit your needs
8
+
9
+ TIP: More context isn't always better. It can confuse the LLM. Try and add the most important rules you need
10
+
11
+ # General guidelines
12
+
13
+ Any general rules you want the AI to follow.
14
+ For example:
15
+
16
+ * Only use absolute positioning when necessary. Opt for responsive and well structured layouts that use flexbox and grid by default
17
+ * Refactor code as you go to keep code clean
18
+ * Keep file sizes small and put helper functions and components in their own files.
19
+
20
+ --------------
21
+
22
+ # Design system guidelines
23
+ Rules for how the AI should make generations look like your company's design system
24
+
25
+ Additionally, if you select a design system to use in the prompt box, you can reference
26
+ your design system's components, tokens, variables and components.
27
+ For example:
28
+
29
+ * Use a base font-size of 14px
30
+ * Date formats should always be in the format “Jun 10”
31
+ * The bottom toolbar should only ever have a maximum of 4 items
32
+ * Never use the floating action button with the bottom toolbar
33
+ * Chips should always come in sets of 3 or more
34
+ * Don't use a dropdown if there are 2 or fewer options
35
+
36
+ You can also create sub sections and add more specific details
37
+ For example:
38
+
39
+
40
+ ## Button
41
+ The Button component is a fundamental interactive element in our design system, designed to trigger actions or navigate
42
+ users through the application. It provides visual feedback and clear affordances to enhance user experience.
43
+
44
+ ### Usage
45
+ Buttons should be used for important actions that users need to take, such as form submissions, confirming choices,
46
+ or initiating processes. They communicate interactivity and should have clear, action-oriented labels.
47
+
48
+ ### Variants
49
+ * Primary Button
50
+ * Purpose : Used for the main action in a section or page
51
+ * Visual Style : Bold, filled with the primary brand color
52
+ * Usage : One primary button per section to guide users toward the most important action
53
+ * Secondary Button
54
+ * Purpose : Used for alternative or supporting actions
55
+ * Visual Style : Outlined with the primary color, transparent background
56
+ * Usage : Can appear alongside a primary button for less important actions
57
+ * Tertiary Button
58
+ * Purpose : Used for the least important actions
59
+ * Visual Style : Text-only with no border, using primary color
60
+ * Usage : For actions that should be available but not emphasized
61
+ -->
@@ -0,0 +1,4 @@
1
+ // Este hook foi movido para /contexts/ThemeContext.tsx
2
+ // Use o hook useTheme do ThemeContext ao invés deste arquivo
3
+
4
+ export { useTheme } from '../contexts/ThemeContext';
@@ -0,0 +1,389 @@
1
+ import svgPaths from "./svg-aueiaqngck";
2
+
3
+ function Wrapper1({ children }: React.PropsWithChildren<{}>) {
4
+ return (
5
+ <div className="relative shrink-0 size-[16px]">
6
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 16 16">
7
+ {children}
8
+ </svg>
9
+ </div>
10
+ );
11
+ }
12
+
13
+ function Wrapper({ children }: React.PropsWithChildren<{}>) {
14
+ return (
15
+ <div className="relative shrink-0 size-[24px]">
16
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 24 24">
17
+ {children}
18
+ </svg>
19
+ </div>
20
+ );
21
+ }
22
+
23
+ function Icon8({ children }: React.PropsWithChildren<{}>) {
24
+ return (
25
+ <Wrapper>
26
+ <g id="<Icon>">{children}</g>
27
+ </Wrapper>
28
+ );
29
+ }
30
+
31
+ function Icon() {
32
+ return (
33
+ <Wrapper>
34
+ <g id="PauseCircleOutlineOutlined">
35
+ <path d={svgPaths.p3d4c2200} fill="var(--fill-0, #F8FAFC)" id="Vector" />
36
+ </g>
37
+ </Wrapper>
38
+ );
39
+ }
40
+
41
+ function IconButton() {
42
+ return (
43
+ <div className="content-stretch flex flex-col h-[44px] items-center justify-center overflow-clip p-[8px] relative rounded-[100px] shrink-0 w-[45px]" data-name="<IconButton>">
44
+ <Icon />
45
+ </div>
46
+ );
47
+ }
48
+
49
+ function SliderRail() {
50
+ return <div className="absolute bg-[#f8fafc] h-[4px] left-0 opacity-[0.38] right-0 rounded-[100px] top-1/2 translate-y-[-50%]" data-name="_SliderRail" />;
51
+ }
52
+
53
+ function SliderTrack() {
54
+ return <div className="absolute bg-[#f8fafc] h-[6px] left-0 rounded-[100px] top-1/2 translate-y-[-50%] w-[47px]" data-name="_SliderTrack" />;
55
+ }
56
+
57
+ function SliderThumb() {
58
+ return (
59
+ <div className="absolute left-[38px] size-[20px] top-1/2 translate-y-[-50%]" data-name="_SliderThumb">
60
+ <div className="absolute inset-[-20%_-25%_-30%_-25%]">
61
+ <svg className="block size-full" fill="none" preserveAspectRatio="none" viewBox="0 0 30 30">
62
+ <g id="_SliderThumb">
63
+ <rect fill="var(--fill-0, #F8FAFC)" height="20" rx="10" width="20" x="5" y="4" />
64
+ <g filter="url(#filter0_ddd_6231_1949)" id="Color">
65
+ <circle cx="15" cy="14" fill="var(--fill-0, #F8FAFC)" r="10" />
66
+ </g>
67
+ </g>
68
+ <defs>
69
+ <filter colorInterpolationFilters="sRGB" filterUnits="userSpaceOnUse" height="30" id="filter0_ddd_6231_1949" width="30" x="0" y="0">
70
+ <feFlood floodOpacity="0" result="BackgroundImageFix" />
71
+ <feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" />
72
+ <feMorphology in="SourceAlpha" operator="erode" radius="2" result="effect1_dropShadow_6231_1949" />
73
+ <feOffset dy="3" />
74
+ <feGaussianBlur stdDeviation="0.5" />
75
+ <feComposite in2="hardAlpha" operator="out" />
76
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0" />
77
+ <feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_6231_1949" />
78
+ <feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" />
79
+ <feOffset dy="2" />
80
+ <feGaussianBlur stdDeviation="1" />
81
+ <feComposite in2="hardAlpha" operator="out" />
82
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.14 0" />
83
+ <feBlend in2="effect1_dropShadow_6231_1949" mode="normal" result="effect2_dropShadow_6231_1949" />
84
+ <feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" />
85
+ <feOffset dy="1" />
86
+ <feGaussianBlur stdDeviation="2.5" />
87
+ <feComposite in2="hardAlpha" operator="out" />
88
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0" />
89
+ <feBlend in2="effect2_dropShadow_6231_1949" mode="normal" result="effect3_dropShadow_6231_1949" />
90
+ <feBlend in="SourceGraphic" in2="effect3_dropShadow_6231_1949" mode="normal" result="shape" />
91
+ </filter>
92
+ </defs>
93
+ </svg>
94
+ </div>
95
+ </div>
96
+ );
97
+ }
98
+
99
+ function Slider() {
100
+ return (
101
+ <div className="h-[44px] relative shrink-0 w-full" data-name="Slider">
102
+ <SliderRail />
103
+ <SliderTrack />
104
+ <SliderThumb />
105
+ </div>
106
+ );
107
+ }
108
+
109
+ function Slider1() {
110
+ return (
111
+ <div className="basis-0 content-stretch flex flex-col grow items-start min-h-px min-w-px relative shrink-0" data-name="<Slider>">
112
+ <Slider />
113
+ </div>
114
+ );
115
+ }
116
+
117
+ function MinWidth() {
118
+ return <div className="absolute h-[4px] left-[calc(50%+0.5px)] top-1/2 translate-x-[-50%] translate-y-[-50%] w-[200px]" data-name="min-width" />;
119
+ }
120
+
121
+ function ProgressLinear() {
122
+ return (
123
+ <div className="basis-0 bg-[rgba(255,255,255,0)] content-stretch flex gap-[8px] grow h-[44px] items-center min-h-px min-w-px relative shrink-0" data-name="<Progress> | Linear">
124
+ <Slider1 />
125
+ <MinWidth />
126
+ </div>
127
+ );
128
+ }
129
+
130
+ function Frame1() {
131
+ return (
132
+ <div className="basis-0 content-stretch flex grow items-center min-h-px min-w-px relative shrink-0">
133
+ <IconButton />
134
+ <ProgressLinear />
135
+ </div>
136
+ );
137
+ }
138
+
139
+ function Icon1() {
140
+ return (
141
+ <Icon8>
142
+ <mask height="24" id="mask0_6231_1943" maskUnits="userSpaceOnUse" style={{ maskType: "alpha" }} width="24" x="0" y="0">
143
+ <rect fill="var(--fill-0, #D9D9D9)" height="24" id="Bounding box" width="24" />
144
+ </mask>
145
+ <g mask="url(#mask0_6231_1943)">
146
+ <path d={svgPaths.p309e9c00} fill="var(--fill-0, #F8FAFC)" id="volume_up" />
147
+ </g>
148
+ </Icon8>
149
+ );
150
+ }
151
+
152
+ function IconButton1() {
153
+ return (
154
+ <div className="[grid-area:1_/_1] content-stretch flex flex-col h-[44px] items-center justify-center ml-0 mt-0 overflow-clip p-[8px] relative rounded-[100px] w-[45px]" data-name="<IconButton>">
155
+ <Icon1 />
156
+ </div>
157
+ );
158
+ }
159
+
160
+ function Icon2() {
161
+ return (
162
+ <Wrapper>
163
+ <g id="RefreshOutlined">
164
+ <path d={svgPaths.p3272e800} fill="var(--fill-0, #F8FAFC)" id="Vector" />
165
+ </g>
166
+ </Wrapper>
167
+ );
168
+ }
169
+
170
+ function IconButton2() {
171
+ return (
172
+ <div className="[grid-area:1_/_1] content-stretch flex flex-col h-[44px] items-center justify-center ml-[45px] mt-0 overflow-clip p-[8px] relative rounded-[100px] w-[45px]" data-name="<IconButton>">
173
+ <Icon2 />
174
+ </div>
175
+ );
176
+ }
177
+
178
+ function Icon3() {
179
+ return (
180
+ <Wrapper>
181
+ <g id="SlowMotionVideoOutlined">
182
+ <path d={svgPaths.p29c42900} fill="var(--fill-0, #F8FAFC)" id="Vector" />
183
+ </g>
184
+ </Wrapper>
185
+ );
186
+ }
187
+
188
+ function IconButton3() {
189
+ return (
190
+ <div className="[grid-area:1_/_1] content-stretch flex flex-col h-[44px] items-center justify-center ml-[90px] mt-0 overflow-clip p-[8px] relative rounded-[100px] w-[45px]" data-name="<IconButton>">
191
+ <Icon3 />
192
+ </div>
193
+ );
194
+ }
195
+
196
+ function Group1() {
197
+ return (
198
+ <div className="grid-cols-[max-content] grid-rows-[max-content] inline-grid leading-[0] place-items-start relative shrink-0">
199
+ <IconButton1 />
200
+ <IconButton2 />
201
+ <IconButton3 />
202
+ </div>
203
+ );
204
+ }
205
+
206
+ function Frame2() {
207
+ return (
208
+ <div className="absolute content-stretch flex gap-[9px] h-[44px] items-center left-[444.5px] top-[8px] w-[562px]">
209
+ <Frame1 />
210
+ <p className="font-['Roboto:Regular',sans-serif] font-normal leading-[20px] relative shrink-0 text-[#f8fafc] text-[14px] text-justify tracking-[0.25px] w-[85px]" style={{ fontVariationSettings: "'wdth' 100" }}>
211
+ 00:00/20:00
212
+ </p>
213
+ <Group1 />
214
+ </div>
215
+ );
216
+ }
217
+
218
+ function InfoFilled() {
219
+ return (
220
+ <Wrapper1>
221
+ <g clipPath="url(#clip0_6231_1937)" id="InfoFilled">
222
+ <g filter="url(#filter0_d_6231_1937)" id="Vector">
223
+ <path d={svgPaths.p73d570} fill="var(--fill-0, #FF7000)" />
224
+ </g>
225
+ </g>
226
+ <defs>
227
+ <filter colorInterpolationFilters="sRGB" filterUnits="userSpaceOnUse" height="21.3333" id="filter0_d_6231_1937" width="21.3333" x="-2.66667" y="1.33333">
228
+ <feFlood floodOpacity="0" result="BackgroundImageFix" />
229
+ <feColorMatrix in="SourceAlpha" result="hardAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" />
230
+ <feOffset dy="4" />
231
+ <feGaussianBlur stdDeviation="2" />
232
+ <feComposite in2="hardAlpha" operator="out" />
233
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" />
234
+ <feBlend in2="BackgroundImageFix" mode="normal" result="effect1_dropShadow_6231_1937" />
235
+ <feBlend in="SourceGraphic" in2="effect1_dropShadow_6231_1937" mode="normal" result="shape" />
236
+ </filter>
237
+ <clipPath id="clip0_6231_1937">
238
+ <rect fill="white" height="16" width="16" />
239
+ </clipPath>
240
+ </defs>
241
+ </Wrapper1>
242
+ );
243
+ }
244
+
245
+ function Icon4() {
246
+ return (
247
+ <Wrapper>
248
+ <g id="CachedOutlined">
249
+ <path d={svgPaths.pa47c180} fill="var(--fill-0, #F8FAFC)" id="Vector" />
250
+ </g>
251
+ </Wrapper>
252
+ );
253
+ }
254
+
255
+ function IconButton4() {
256
+ return (
257
+ <div className="content-stretch flex flex-col h-[44px] items-center justify-center overflow-clip p-[8px] relative rounded-[100px] shrink-0 w-[45px]" data-name="<IconButton>">
258
+ <Icon4 />
259
+ <div className="absolute bg-[rgba(0,0,0,0.12)] left-[calc(50%+0.5px)] rounded-[100px] size-[36px] top-1/2 translate-x-[-50%] translate-y-[-50%]" data-name="focusRipple" />
260
+ </div>
261
+ );
262
+ }
263
+
264
+ function Icon5() {
265
+ return (
266
+ <Wrapper>
267
+ <g id="FileDownloadOutlined">
268
+ <path d={svgPaths.pf91a580} fill="var(--fill-0, #F8FAFC)" id="Vector" />
269
+ </g>
270
+ </Wrapper>
271
+ );
272
+ }
273
+
274
+ function IconButton5() {
275
+ return (
276
+ <div className="content-stretch flex flex-col h-[44px] items-center justify-center overflow-clip p-[8px] relative rounded-[100px] shrink-0 w-[45px]" data-name="<IconButton>">
277
+ <Icon5 />
278
+ </div>
279
+ );
280
+ }
281
+
282
+ function Icon6() {
283
+ return (
284
+ <Icon8>
285
+ <path d={svgPaths.p3fd9e500} fill="var(--fill-0, #F8FAFC)" id="Vector" />
286
+ </Icon8>
287
+ );
288
+ }
289
+
290
+ function IconButton6() {
291
+ return (
292
+ <div className="content-stretch flex flex-col h-[44px] items-center justify-center overflow-clip p-[8px] relative rounded-[100px] shrink-0 w-[45px]" data-name="<IconButton>">
293
+ <Icon6 />
294
+ </div>
295
+ );
296
+ }
297
+
298
+ function Frame() {
299
+ return (
300
+ <div className="absolute content-stretch flex items-center justify-end left-[1096px] top-[9px] w-[191px]">
301
+ <InfoFilled />
302
+ <IconButton4 />
303
+ <IconButton5 />
304
+ <IconButton6 />
305
+ </div>
306
+ );
307
+ }
308
+
309
+ function Typography() {
310
+ return (
311
+ <div className="content-stretch flex flex-col items-start relative shrink-0" data-name="<Typography>">
312
+ <p className="font-['Roboto:Medium',sans-serif] font-medium leading-[1.5] relative shrink-0 text-[#f8fafc] text-[16px] text-nowrap tracking-[0.15px]" style={{ fontVariationSettings: "'wdth' 100" }}>{`Processo 50002396220258210104 `}</p>
313
+ </div>
314
+ );
315
+ }
316
+
317
+ function Frame4() {
318
+ return (
319
+ <div className="content-stretch flex gap-[8px] items-center relative shrink-0 w-[349px]">
320
+ <Typography />
321
+ </div>
322
+ );
323
+ }
324
+
325
+ function Icon7() {
326
+ return (
327
+ <Wrapper1>
328
+ <g id="<Icon>">
329
+ <mask height="16" id="mask0_6231_1918" maskUnits="userSpaceOnUse" style={{ maskType: "alpha" }} width="16" x="0" y="0">
330
+ <rect fill="var(--fill-0, #D9D9D9)" height="16" id="Bounding box" width="16" />
331
+ </mask>
332
+ <g mask="url(#mask0_6231_1918)">
333
+ <path d={svgPaths.p1a05300} fill="var(--fill-0, white)" id="conversion_path" />
334
+ </g>
335
+ </g>
336
+ </Wrapper1>
337
+ );
338
+ }
339
+
340
+ function Frame5() {
341
+ return (
342
+ <div className="content-stretch flex gap-px items-center relative shrink-0 w-[214px]">
343
+ <p className="font-['Roboto:Regular',sans-serif] font-normal leading-[1.66] relative shrink-0 text-[#f8fafc] text-[0px] text-[12px] text-justify text-nowrap tracking-[0.4px]" style={{ fontVariationSettings: "'wdth' 100" }}>
344
+ <span>{`Podcast atualizado até `}</span>
345
+ <span className="[text-decoration-skip-ink:none] [text-underline-position:from-font] decoration-solid underline" style={{ fontVariationSettings: "'wdth' 100" }}>
346
+ Evento 26
347
+ </span>
348
+ </p>
349
+ <Icon7 />
350
+ </div>
351
+ );
352
+ }
353
+
354
+ function Frame3() {
355
+ return (
356
+ <div className="absolute content-stretch flex flex-col items-start left-[23px] top-[8px]">
357
+ <Frame4 />
358
+ <Frame5 />
359
+ </div>
360
+ );
361
+ }
362
+
363
+ function Tooltip() {
364
+ return (
365
+ <div className="absolute bg-[#49454f] content-stretch flex items-center left-[711px] px-[13px] py-[7px] rounded-[6px] shadow-[0px_2px_4px_0px_rgba(30,41,59,0.25)] top-[-66px] w-[446px]" data-name="tooltip">
366
+ <p className="basis-0 font-['Roboto:Regular',sans-serif] font-normal grow leading-[1.43] min-h-px min-w-px relative shrink-0 text-[#f8fafc] text-[14px] tracking-[0.17px]" style={{ fontVariationSettings: "'wdth' 100" }}>{`Identificamos a entrada de novos eventos neste processo desde a última atualização deste podcast. Recomendamos que o atualize uma nova versão clicando no botão ao lado. `}</p>
367
+ </div>
368
+ );
369
+ }
370
+
371
+ function Group() {
372
+ return (
373
+ <div className="absolute contents left-[711px] top-[-66px]">
374
+ <Tooltip />
375
+ </div>
376
+ );
377
+ }
378
+
379
+ export default function Podcast() {
380
+ return (
381
+ <div className="backdrop-blur-[5.75px] backdrop-filter bg-[rgba(23,26,51,0.7)] relative shadow-[0px_4px_13.8px_0px_rgba(0,0,0,0.25)] size-full" data-name="Podcast">
382
+ <Frame2 />
383
+ <Frame />
384
+ <Frame3 />
385
+ <Group />
386
+ <div className="absolute inset-0 pointer-events-none shadow-[inset_0px_-2px_4px_0px_rgba(0,0,0,0.25)]" />
387
+ </div>
388
+ );
389
+ }
@@ -0,0 +1,46 @@
1
+ import svgPaths from "./svg-v9krss1ozd";
2
+
3
+ export default function XerticaAi() {
4
+ return (
5
+ <div className="relative size-full" data-name="Xertica.ai">
6
+ <svg
7
+ className="block size-full"
8
+ fill="none"
9
+ preserveAspectRatio="none"
10
+ viewBox="0 0 1543 289"
11
+ >
12
+ <g id="Xertica.ai">
13
+ <path d={svgPaths.p269a5080} fill="var(--fill-0, #00BEFF)" />
14
+ <path
15
+ clipRule="evenodd"
16
+ d={svgPaths.pe708100}
17
+ fill="var(--fill-0, #00BEFF)"
18
+ fillRule="evenodd"
19
+ />
20
+ <path
21
+ clipRule="evenodd"
22
+ d={svgPaths.p391c6900}
23
+ fill="var(--fill-0, #00BEFF)"
24
+ fillRule="evenodd"
25
+ />
26
+ <path
27
+ clipRule="evenodd"
28
+ d={svgPaths.p218f7380}
29
+ fill="var(--fill-0, #00BEFF)"
30
+ fillRule="evenodd"
31
+ />
32
+ <path d={svgPaths.p190d2b00} fill="var(--fill-0, #00BEFF)" />
33
+ <path d={svgPaths.p37e5b880} fill="var(--fill-0, #00BEFF)" />
34
+ <path d={svgPaths.p2b45b880} fill="var(--fill-0, #00BEFF)" />
35
+ <path d={svgPaths.p9a1c500} fill="var(--fill-0, #00BEFF)" />
36
+ <path d={svgPaths.p1c064400} fill="var(--fill-0, #00BEFF)" />
37
+ <path d={svgPaths.pfef5900} fill="var(--fill-0, #00BEFF)" />
38
+ <path d={svgPaths.p1f28d900} fill="var(--fill-0, #00BEFF)" />
39
+ <path d={svgPaths.p47d3d80} fill="var(--fill-0, #00BEFF)" />
40
+ <path d={svgPaths.p36a1d300} fill="var(--fill-0, #00BEFF)" />
41
+ <path d={svgPaths.pddf900} fill="var(--fill-0, #00BEFF)" />
42
+ </g>
43
+ </svg>
44
+ </div>
45
+ );
46
+ }
@@ -0,0 +1,20 @@
1
+ import svgPaths from "./svg-vhrdofe3qe";
2
+
3
+ export default function XerticaX() {
4
+ return (
5
+ <div className="relative size-full" data-name="Xertica X">
6
+ <svg
7
+ className="block size-full"
8
+ fill="none"
9
+ preserveAspectRatio="none"
10
+ viewBox="0 0 258 282"
11
+ >
12
+ <g id="Xertica X">
13
+ <path d={svgPaths.p334f3700} fill="var(--fill-0, #00BEFF)" />
14
+ <path d={svgPaths.p32fcd100} fill="var(--fill-0, #00BEFF)" />
15
+ <path d={svgPaths.p1c985d80} fill="var(--fill-0, #00BEFF)" />
16
+ </g>
17
+ </svg>
18
+ </div>
19
+ );
20
+ }
@@ -0,0 +1,11 @@
1
+ export default {
2
+ p1a05300: "M12.6667 14C12.2333 14 11.8444 13.875 11.5 13.625C11.1556 13.375 10.9167 13.0556 10.7833 12.6667H7.33333C6.6 12.6667 5.97222 12.4056 5.45 11.8833C4.92778 11.3611 4.66667 10.7333 4.66667 10C4.66667 9.26667 4.92778 8.63889 5.45 8.11667C5.97222 7.59444 6.6 7.33333 7.33333 7.33333H8.66667C9.03333 7.33333 9.34722 7.20278 9.60833 6.94167C9.86944 6.68056 10 6.36667 10 6C10 5.63333 9.86944 5.31944 9.60833 5.05833C9.34722 4.79722 9.03333 4.66667 8.66667 4.66667H5.21667C5.07222 5.05556 4.83056 5.375 4.49167 5.625C4.15278 5.875 3.76667 6 3.33333 6C2.77778 6 2.30556 5.80556 1.91667 5.41667C1.52778 5.02778 1.33333 4.55556 1.33333 4C1.33333 3.44444 1.52778 2.97222 1.91667 2.58333C2.30556 2.19444 2.77778 2 3.33333 2C3.76667 2 4.15278 2.125 4.49167 2.375C4.83056 2.625 5.07222 2.94444 5.21667 3.33333H8.66667C9.4 3.33333 10.0278 3.59444 10.55 4.11667C11.0722 4.63889 11.3333 5.26667 11.3333 6C11.3333 6.73333 11.0722 7.36111 10.55 7.88333C10.0278 8.40556 9.4 8.66667 8.66667 8.66667H7.33333C6.96667 8.66667 6.65278 8.79722 6.39167 9.05833C6.13056 9.31944 6 9.63333 6 10C6 10.3667 6.13056 10.6806 6.39167 10.9417C6.65278 11.2028 6.96667 11.3333 7.33333 11.3333H10.7833C10.9278 10.9444 11.1694 10.625 11.5083 10.375C11.8472 10.125 12.2333 10 12.6667 10C13.2222 10 13.6944 10.1944 14.0833 10.5833C14.4722 10.9722 14.6667 11.4444 14.6667 12C14.6667 12.5556 14.4722 13.0278 14.0833 13.4167C13.6944 13.8056 13.2222 14 12.6667 14ZM3.33333 4.66667C3.52222 4.66667 3.68056 4.60278 3.80833 4.475C3.93611 4.34722 4 4.18889 4 4C4 3.81111 3.93611 3.65278 3.80833 3.525C3.68056 3.39722 3.52222 3.33333 3.33333 3.33333C3.14444 3.33333 2.98611 3.39722 2.85833 3.525C2.73056 3.65278 2.66667 3.81111 2.66667 4C2.66667 4.18889 2.73056 4.34722 2.85833 4.475C2.98611 4.60278 3.14444 4.66667 3.33333 4.66667Z",
3
+ p29c42900: "M13.05 9.78999L9.99999 7.49999V16.5L13.05 14.21L16 12L13.05 9.78999ZM13.05 9.78999L9.99999 7.49999V16.5L13.05 14.21L16 12L13.05 9.78999ZM13.05 9.78999L9.99999 7.49999V16.5L13.05 14.21L16 12L13.05 9.78999ZM11 4.06999V2.04999C8.98999 2.24999 7.15999 3.04999 5.67999 4.25999L7.09999 5.68999C8.20999 4.82999 9.53999 4.24999 11 4.06999ZM5.68999 7.09999L4.25999 5.67999C3.04999 7.15999 2.24999 8.98999 2.04999 11H4.06999C4.24999 9.53999 4.82999 8.20999 5.68999 7.09999ZM4.06999 13H2.04999C2.24999 15.01 3.04999 16.84 4.25999 18.32L5.68999 16.89C4.82999 15.79 4.24999 14.46 4.06999 13ZM5.67999 19.74C7.15999 20.95 8.99999 21.75 11 21.95V19.93C9.53999 19.75 8.20999 19.17 7.09999 18.31L5.67999 19.74ZM22 12C22 17.16 18.08 21.42 13.05 21.95V19.93C16.97 19.41 20 16.05 20 12C20 7.94999 16.97 4.58999 13.05 4.06999V2.04999C18.08 2.57999 22 6.83999 22 12Z",
4
+ p309e9c00: "M14 20.725V18.675C15.5 18.2417 16.7083 17.4083 17.625 16.175C18.5417 14.9417 19 13.5417 19 11.975C19 10.4083 18.5417 9.00833 17.625 7.775C16.7083 6.54167 15.5 5.70833 14 5.275V3.225C16.0667 3.69167 17.75 4.7375 19.05 6.3625C20.35 7.9875 21 9.85833 21 11.975C21 14.0917 20.35 15.9625 19.05 17.5875C17.75 19.2125 16.0667 20.2583 14 20.725ZM3 15V9H7L12 4V20L7 15H3ZM14 16V7.95C14.7833 8.31667 15.3958 8.86667 15.8375 9.6C16.2792 10.3333 16.5 11.1333 16.5 12C16.5 12.85 16.2792 13.6375 15.8375 14.3625C15.3958 15.0875 14.7833 15.6333 14 16ZM10 8.85L7.85 11H5V13H7.85L10 15.15V8.85Z",
5
+ p3272e800: "M17.65 6.35C16.2 4.9 14.21 4 12 4C7.57999 4 4.00999 7.58 4.00999 12C4.00999 16.42 7.57999 20 12 20C15.73 20 18.84 17.45 19.73 14H17.65C16.83 16.33 14.61 18 12 18C8.68999 18 5.99999 15.31 5.99999 12C5.99999 8.69 8.68999 6 12 6C13.66 6 15.14 6.69 16.22 7.78L13 11H20V4L17.65 6.35Z",
6
+ p3d4c2200: "M9 16H11V8H9V16ZM12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 20C7.59 20 4 16.41 4 12C4 7.59 7.59 4 12 4C16.41 4 20 7.59 20 12C20 16.41 16.41 20 12 20ZM13 16H15V8H13V16Z",
7
+ p3fd9e500: "M19 6.41L17.59 5L12 10.59L6.41 5L5 6.41L10.59 12L5 17.59L6.41 19L12 13.41L17.59 19L19 17.59L13.41 12L19 6.41Z",
8
+ p73d570: "M8 1.33333C4.32 1.33333 1.33333 4.32 1.33333 8C1.33333 11.68 4.32 14.6667 8 14.6667C11.68 14.6667 14.6667 11.68 14.6667 8C14.6667 4.32 11.68 1.33333 8 1.33333ZM8.66667 11.3333H7.33333V7.33333H8.66667V11.3333ZM8.66667 6H7.33333V4.66667H8.66667V6Z",
9
+ pa47c180: "M19 8L15 12H18C18 15.31 15.31 18 12 18C10.99 18 10.03 17.75 9.2 17.3L7.74 18.76C8.97 19.54 10.43 20 12 20C16.42 20 20 16.42 20 12H23L19 8ZM6 12C6 8.69 8.69 6 12 6C13.01 6 13.97 6.25 14.8 6.7L16.26 5.24C15.03 4.46 13.57 4 12 4C7.58 4 4 7.58 4 12H1L5 16L9 12H6Z",
10
+ pf91a580: "M18 15V18H6V15H4V18C4 19.1 4.9 20 6 20H18C19.1 20 20 19.1 20 18V15H18ZM17 11L15.59 9.59L13 12.17V4H11V12.17L8.41 9.59L7 11L12 16L17 11Z",
11
+ }
@@ -0,0 +1,16 @@
1
+ export default {
2
+ p190d2b00: "M1352.82 239.808V285.425H1304.73V239.808H1352.82Z",
3
+ p1c064400: "M814.8 284.848H766.711V77.4971H814.8V284.848Z",
4
+ p1f28d900: "M1543 284.438H1514.2V160.28H1543V284.438Z",
5
+ p218f7380: "M1432.83 157.796C1446.98 157.796 1459.14 162.515 1468.58 170.709V160.28H1497.38V284.438H1468.58V274.01C1459.14 282.451 1446.98 286.921 1432.83 286.921C1395.1 286.921 1368.29 260.352 1368.29 222.359C1368.29 184.616 1395.1 157.796 1432.83 157.796ZM1432.83 183.778C1410.79 183.778 1396.27 199.061 1396.27 222.359C1396.27 245.658 1410.79 260.94 1432.83 260.94C1454.63 260.94 1468.9 245.658 1468.9 222.359C1468.9 199.06 1454.63 183.778 1432.83 183.778Z",
6
+ p269a5080: "M947.87 73.3516C1002.88 73.3516 1044.42 107.647 1053.57 159.234H1004.68C997.221 132.988 976.34 117.308 947.87 117.308C911.387 117.308 887.337 142.612 887.337 181.176C887.337 219.739 911.387 245.036 947.87 245.036C976.34 245.036 997.221 229.356 1004.68 203.109H1053.57C1044.47 254.701 1003.26 289 947.87 289C884.853 289 840.078 244.626 840.078 181.176C840.078 118.142 884.854 73.3516 947.87 73.3516Z",
7
+ p2b45b880: "M88.4971 39.8242L157.353 142.191L83.5371 251.524L60.9277 284.854H0L96.3154 142.191L5.37695 7H66.3047L88.4971 39.8242Z",
8
+ p36a1d300: "M182.552 98.6992L151.922 53.3906L188.014 0H248.941L182.552 98.6992Z",
9
+ p37e5b880: "M254.314 284.855H193.387L151.914 223.71L182.548 178.551L254.314 284.855Z",
10
+ p391c6900: "M1179.14 73.3477C1202.77 73.3477 1223.08 81.2286 1238.84 94.9121V77.4971H1286.94V284.847H1238.84V267.431C1223.09 281.528 1202.77 288.992 1179.14 288.992C1116.12 288.992 1071.35 244.622 1071.35 181.172C1071.35 118.139 1116.12 73.3478 1179.14 73.3477ZM1179.14 117.308C1142.66 117.308 1118.61 142.604 1118.61 181.172C1118.61 219.739 1142.66 245.035 1179.14 245.035C1215.21 245.035 1238.84 219.739 1238.84 181.172C1238.84 142.605 1215.21 117.308 1179.14 117.308Z",
11
+ p47d3d80: "M1543 145.383H1514.2V118.067H1543V145.383Z",
12
+ p9a1c500: "M672.466 77.501H736.31V121.457H672.466V211.448C672.466 230.939 682.415 240.891 702.313 240.891H736.309V284.852H698.999C649.246 284.851 625.203 259.968 625.203 211.449V7H672.466V77.501Z",
13
+ pddf900: "M814.8 52.6172H766.711V7H814.8V52.6172Z",
14
+ pe708100: "M354.069 73.3516C417.086 73.3517 461.864 118.143 461.864 181.176C461.864 187.396 461.031 193.615 460.204 199.422H295.197C301.829 228.864 323.392 246.696 354.069 246.696C372.724 246.696 389.309 241.721 399.675 226.376H452.742C441.132 265.774 400.501 288.996 354.069 288.996C291.053 288.996 246.274 244.626 246.273 181.176C246.273 118.142 291.053 73.3516 354.069 73.3516ZM354.068 115.65C325.044 115.65 303.902 131.826 296.44 158.78H410.863C403.819 131.826 382.672 115.65 354.068 115.65Z",
15
+ pfef5900: "M596.957 121.453H562.962C543.064 121.453 533.114 131.409 533.114 150.899V284.847H485.852V150.899C485.852 102.38 509.894 77.4972 559.647 77.4971H596.957V121.453Z",
16
+ }
@@ -0,0 +1,5 @@
1
+ export default {
2
+ p1c985d80: "M252.696 0.186523L185.042 100.142L154.106 54.0693L190.884 0L252.696 0.186523Z",
3
+ p32fcd100: "M258 282H196.185L154.114 219.951L185.192 174.123L258 282Z",
4
+ p334f3700: "M67.2666 0.0361328L89.7793 33.3447L159.63 137.228L84.7471 248.178L61.8115 282H0L97.7109 137.228L5.45508 0.0361328H67.2666Z",
5
+ }