@luxfi/core 5.2.7 → 5.2.9
Sign up to get free protection for your applications and to get access to all the features.
- package/commerce/ui/context.tsx +41 -17
- package/commerce/ui/store.ts +40 -12
- package/components/auth/login-panel.tsx +1 -1
- package/components/back-button.tsx +42 -0
- package/components/commerce/checkout-panel/dt-checkout-panel.tsx +36 -18
- package/components/commerce/checkout-panel/mb-checkout-panel.tsx +2 -2
- package/components/commerce/desktop-nav-menu.tsx +46 -45
- package/components/commerce/drawer/index.tsx +0 -17
- package/components/commerce/drawer/shell.tsx +58 -56
- package/components/commerce/mobile-nav-menu-ai.tsx +12 -8
- package/components/commerce/mobile-nav-menu.tsx +68 -34
- package/components/footer.tsx +1 -1
- package/components/header/desktop.tsx +20 -19
- package/components/header/mobile.tsx +15 -18
- package/components/icons/24k-gold-card.tsx +43 -0
- package/components/icons/ai-chat.tsx +29 -0
- package/components/icons/anodized-titanium.tsx +45 -0
- package/components/icons/blog.tsx +20 -0
- package/components/icons/bridge.tsx +68 -0
- package/components/icons/changelog.tsx +21 -0
- package/components/icons/chrome.tsx +45 -0
- package/components/icons/coins.tsx +20 -0
- package/components/icons/compare-cards.tsx +21 -0
- package/components/icons/credit.tsx +20 -0
- package/components/icons/customer-support.tsx +21 -0
- package/components/icons/customers.tsx +33 -0
- package/components/icons/developer-docs.tsx +20 -0
- package/components/icons/exchange.tsx +21 -0
- package/components/icons/explorer.tsx +22 -0
- package/components/icons/faqs.tsx +21 -0
- package/components/icons/guides.tsx +21 -0
- package/components/icons/gun-metal.tsx +44 -0
- package/components/icons/integrations.tsx +25 -0
- package/components/icons/irradescent.tsx +41 -0
- package/components/icons/launch-subnet.tsx +21 -0
- package/components/icons/lux-finance.tsx +23 -0
- package/components/icons/lux-pass.tsx +25 -0
- package/components/icons/lux-quests.tsx +21 -0
- package/components/icons/market.tsx +24 -0
- package/components/icons/mirrored-titanium.tsx +46 -0
- package/components/icons/more-benefits.tsx +21 -0
- package/components/icons/open-source.tsx +26 -0
- package/components/icons/safe.tsx +37 -0
- package/components/icons/shop.tsx +20 -0
- package/components/icons/sterling-silver-card.tsx +44 -0
- package/components/icons/templates.tsx +21 -0
- package/components/icons/validators.tsx +41 -0
- package/components/icons/view-all-card.tsx +20 -0
- package/components/icons/wallet.tsx +20 -0
- package/components/index.ts +2 -0
- package/components/logo.tsx +48 -40
- package/components/tooltip.tsx +31 -0
- package/package.json +2 -1
- package/root-layout/index.tsx +1 -1
- package/site-def/main-nav.tsx +248 -194
- package/components/commerce/checkout-panel/close-button.tsx +0 -26
package/site-def/main-nav.tsx
CHANGED
@@ -1,16 +1,53 @@
|
|
1
1
|
import type { LinkDef } from '@hanzo/ui/types'
|
2
|
-
import
|
3
|
-
import
|
4
|
-
import
|
2
|
+
import Anodized from '../components/icons/anodized-titanium'
|
3
|
+
import GunMetal from '../components/icons/gun-metal'
|
4
|
+
import Chrome from '../components/icons/chrome'
|
5
|
+
import Irradescent from '../components/icons/irradescent'
|
6
|
+
import CompareCards from '../components/icons/compare-cards'
|
7
|
+
import ViewAllCards from '../components/icons/view-all-card'
|
8
|
+
import MoreBenefits from '../components/icons/more-benefits'
|
9
|
+
import GoldCard from '../components/icons/24k-gold-card'
|
10
|
+
import Sterling from '../components/icons/sterling-silver-card'
|
11
|
+
import MirroredTitanium from '../components/icons/mirrored-titanium'
|
12
|
+
import AIChat from '../components/icons/ai-chat'
|
13
|
+
import Exchange from '../components/icons/exchange'
|
14
|
+
import Market from '../components/icons/market'
|
15
|
+
import Shop from '../components/icons/shop'
|
16
|
+
import Credit from '../components/icons/credit'
|
17
|
+
import LuxFinance from '../components/icons/lux-finance'
|
18
|
+
import LuxQuests from '../components/icons/lux-quests'
|
19
|
+
import DeveloperDocs from '../components/icons/developer-docs'
|
20
|
+
import Integration from '../components/icons/integrations'
|
21
|
+
import Templates from '../components/icons/templates'
|
22
|
+
import Guides from '../components/icons/guides'
|
23
|
+
import Customers from '../components/icons/customers'
|
24
|
+
import Blog from '../components/icons/blog'
|
25
|
+
import ChangeLog from '../components/icons/changelog'
|
26
|
+
import type { CLIENT_STATIC_FILES_PATH } from 'next/dist/shared/lib/constants'
|
27
|
+
import CustomerSupport from '../components/icons/customer-support'
|
28
|
+
import FAQs from '../components/icons/faqs'
|
29
|
+
import Bridge from '../components/icons/bridge'
|
30
|
+
import Explorer from '../components/icons/explorer'
|
31
|
+
import LaunchSubnet from '../components/icons/launch-subnet'
|
32
|
+
import Coins from '../components/icons/coins'
|
33
|
+
import Safe from '../components/icons/Safe'
|
34
|
+
import Wallet from '../components/icons/wallet'
|
35
|
+
import Validators from '../components/icons/validators'
|
36
|
+
import OpenSource from '../components/icons/open-source'
|
37
|
+
import LuxPass from '../components/icons/lux-pass'
|
5
38
|
|
6
39
|
export interface LinkDefExtended extends LinkDef {
|
7
40
|
isAIMenu?: boolean
|
8
41
|
icon?: any,
|
9
42
|
details?: string,
|
10
|
-
childMenu?:
|
43
|
+
childMenu?: ChildMenu[]
|
11
44
|
|
12
45
|
}
|
13
46
|
|
47
|
+
export interface ChildMenu extends LinkDef{
|
48
|
+
groupName?:string
|
49
|
+
}
|
50
|
+
|
14
51
|
export default [
|
15
52
|
{
|
16
53
|
title: "AI",
|
@@ -20,158 +57,92 @@ export default [
|
|
20
57
|
isAIMenu: true,
|
21
58
|
},
|
22
59
|
{
|
23
|
-
title: "
|
60
|
+
title: "Cards",
|
24
61
|
icon: "",
|
25
|
-
details: "
|
26
|
-
href: "https://
|
62
|
+
details: "Lux Credit is a part of the Lux Network ecosystem that offers a crypto credit card solution. This service allows users to easily conduct transactions using their cryptocurrency holdings. The Lux Credit card aims to bridge the gap between traditional financial systems and the growing world of digital assets, providing a seamless way to spend cryptocurrencies in everyday transactions.",
|
63
|
+
href: "https://lux.credit",
|
27
64
|
newTab: false,
|
28
65
|
childMenu: [
|
29
66
|
{
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
contents:"" //insert string to here
|
35
|
-
}, {
|
36
|
-
title: "Lux Discussions",
|
37
|
-
icon: <SocialIcon network='github' className=' w-[100%]' size={34}/>,
|
38
|
-
href: "https://github.com/luxfi/web/discussions",
|
39
|
-
newTab: false,
|
40
|
-
contents:"" //insert string to here
|
41
|
-
}, {
|
42
|
-
title: "@luxdefi",
|
43
|
-
icon: <SocialIcon network='facebook' className=' w-[100%]' size={34}/>,
|
44
|
-
href: "https://facebook.com/luxdefi",
|
45
|
-
newTab: false,
|
46
|
-
contents: "Be a part of the Lux Community and contribute to the growth and success of the Lux Ecosystem. Whether you are a developer, investor, or blockchain enthusiast, there is a place for you in our community. Join us today and start enjoying the numerous benefits and opportunities that come with being a member of the Lux Community.",
|
47
|
-
}, {
|
48
|
-
title: "@luxdefi",
|
49
|
-
icon: <SocialIcon network='instagram' className=' w-[100%]' size={34}/>,
|
50
|
-
href: "https://www.instagram.com/luxdefi",
|
51
|
-
newTab: false,
|
52
|
-
contents:"" //insert string to here
|
53
|
-
}, {
|
54
|
-
title: "@luxdefi",
|
55
|
-
icon: <SocialIcon network='linkedin' className=' w-[100%]' size={34}/>,
|
56
|
-
href: "https://linkedin.com/company/luxdefi",
|
57
|
-
newTab: false,
|
58
|
-
contents:"" //insert string to here
|
59
|
-
}, {
|
60
|
-
title: "@luxdefi",
|
61
|
-
icon: <SocialIcon network='x' className=' w-[100%]' size={34}/>,
|
62
|
-
href: "https://twitter.com/luxdefi",
|
63
|
-
newTab: false,
|
64
|
-
contents:"" //insert string to here
|
65
|
-
},{
|
66
|
-
title: "@luxdefi",
|
67
|
-
icon: <SocialIcon network='youtube' className=' w-[100%]' size={34}/>,
|
68
|
-
href: "https://www.youtube.com/@luxdefi",
|
67
|
+
groupName:'Black Card',
|
68
|
+
title: "Anodized Black Titanium",
|
69
|
+
icon: <Anodized />,
|
70
|
+
href: "https://lux.credit/cards/black?sku=LXM-CR-B-ABT",
|
69
71
|
newTab: false,
|
70
72
|
contents:"" //insert string to here
|
71
73
|
},
|
72
|
-
]
|
73
|
-
},
|
74
|
-
{
|
75
|
-
title: "Company",
|
76
|
-
icon: "",
|
77
|
-
details: "At Lux Network, our mission is to revolutionize the blockchain industry by providing a scalable, quantum-safe blockchain ecosystem that integrates traditional finance (TradFi) with decentralized finance (DeFi). We aim to create a secure, efficient, and user-friendly platform that empowers individuals and businesses to leverage the full potential of blockchain technology.",
|
78
|
-
href: "https://lux.partners",
|
79
|
-
newTab: false,
|
80
|
-
childMenu: [
|
81
74
|
{
|
82
|
-
|
83
|
-
|
84
|
-
|
75
|
+
groupName:'Black Card',
|
76
|
+
title: "Black Gunmetal",
|
77
|
+
icon: <GunMetal />,
|
78
|
+
href: "https://lux.credit/cards/black?sku=LXM-CR-B-GM",
|
85
79
|
newTab: false,
|
86
80
|
contents:"" //insert string to here
|
87
81
|
},
|
88
82
|
{
|
89
|
-
|
90
|
-
|
91
|
-
|
83
|
+
groupName:'Founder Card',
|
84
|
+
title: "Cool Chrome",
|
85
|
+
icon: <Chrome />,
|
86
|
+
href: "https://lux.credit/cards/founder?sku=LXM-CR-F-CC",
|
92
87
|
newTab: false,
|
93
88
|
contents:"" //insert string to here
|
94
89
|
},
|
95
90
|
{
|
96
|
-
|
97
|
-
|
98
|
-
|
91
|
+
groupName:'Founder Card',
|
92
|
+
title: "Iridescent Chrome",
|
93
|
+
icon: <Irradescent />,
|
94
|
+
href: "https://lux.credit/cards/founder?sku=LXM-CR-F-IC",
|
99
95
|
newTab: false,
|
100
96
|
contents:"" //insert string to here
|
101
|
-
},
|
97
|
+
},
|
102
98
|
{
|
103
|
-
|
104
|
-
|
105
|
-
|
99
|
+
groupName:'Explore',
|
100
|
+
title: "Compare cards",
|
101
|
+
icon: <CompareCards width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
102
|
+
href: "https://lux.credit/compare",
|
106
103
|
newTab: false,
|
107
|
-
contents:"
|
104
|
+
contents:"Evaluate Lux cards"
|
108
105
|
},
|
109
|
-
|
110
106
|
{
|
111
|
-
|
112
|
-
|
113
|
-
|
107
|
+
groupName:'Explore',
|
108
|
+
title: "View all cards",
|
109
|
+
icon: <ViewAllCards width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
110
|
+
href: "https://lux.credit/cards",
|
114
111
|
newTab: false,
|
115
|
-
contents:""
|
112
|
+
contents:"General overview"
|
116
113
|
},
|
117
114
|
{
|
118
|
-
|
119
|
-
|
120
|
-
|
115
|
+
groupName:'Explore',
|
116
|
+
title: "More benefits",
|
117
|
+
icon: <MoreBenefits width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
118
|
+
href: "#",
|
121
119
|
newTab: false,
|
122
|
-
contents:"
|
120
|
+
contents:"See what's truly unique"
|
123
121
|
},
|
124
122
|
{
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
contents:"" //insert string to here
|
130
|
-
}
|
131
|
-
]
|
132
|
-
},
|
133
|
-
{
|
134
|
-
title: "Credit",
|
135
|
-
icon: "",
|
136
|
-
details: "Lux Credit is a part of the Lux Network ecosystem that offers a crypto credit card solution. This service allows users to easily conduct transactions using their cryptocurrency holdings. The Lux Credit card aims to bridge the gap between traditional financial systems and the growing world of digital assets, providing a seamless way to spend cryptocurrencies in everyday transactions.",
|
137
|
-
href: "https://lux.credit",
|
138
|
-
newTab: false,
|
139
|
-
childMenu: [
|
140
|
-
{
|
141
|
-
title: "Coins",
|
142
|
-
icon: "",
|
143
|
-
href: "https://lux.credit",
|
123
|
+
groupName:'Elite Card',
|
124
|
+
title: "24k Gold",
|
125
|
+
icon: <GoldCard />,
|
126
|
+
href: "https://lux.credit/cards/elite?sku=LXM-CR-E-24G",
|
144
127
|
newTab: false,
|
145
128
|
contents:"" //insert string to here
|
146
129
|
},
|
147
130
|
{
|
148
|
-
|
149
|
-
|
150
|
-
|
131
|
+
groupName:'Elite Card',
|
132
|
+
title: "Sterling Silver",
|
133
|
+
icon: <Sterling />,
|
134
|
+
href: "https://lux.credit/cards/elite?sku=LXM-CR-E-SS",
|
151
135
|
newTab: false,
|
152
136
|
contents:"" //insert string to here
|
153
137
|
},
|
154
138
|
{
|
155
|
-
|
156
|
-
|
157
|
-
|
139
|
+
groupName:'Sovereign Card',
|
140
|
+
title: "Reflective Titanium",
|
141
|
+
icon: <MirroredTitanium/>,
|
142
|
+
href: "https://lux.credit/cards/sovereign?sku=LXM-CR-S-RT",
|
158
143
|
newTab: false,
|
159
144
|
contents:"" //insert string to here
|
160
145
|
},
|
161
|
-
{
|
162
|
-
title: "Validators",
|
163
|
-
icon: "",
|
164
|
-
href: "https://lux.market/validator",
|
165
|
-
newTab: false,
|
166
|
-
contents:"" //insert string to here
|
167
|
-
},
|
168
|
-
{
|
169
|
-
title: "View All Cards",
|
170
|
-
icon: "",
|
171
|
-
href: "https://lux.credit/cards",
|
172
|
-
newTab: false,
|
173
|
-
contents:"" //insert string to here
|
174
|
-
}
|
175
146
|
]
|
176
147
|
},
|
177
148
|
{
|
@@ -182,53 +153,60 @@ export default [
|
|
182
153
|
newTab: false,
|
183
154
|
childMenu: [
|
184
155
|
{
|
156
|
+
groupName:'Blockchain',
|
185
157
|
title: "AI Chat",
|
186
|
-
icon:
|
158
|
+
icon: <AIChat width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
187
159
|
href: "https://lux.chat",
|
188
160
|
newTab: false,
|
189
|
-
contents:"
|
161
|
+
contents:"Ask anything, literally"
|
190
162
|
},
|
191
163
|
{
|
192
|
-
|
193
|
-
|
194
|
-
|
164
|
+
groupName:'Blockchain',
|
165
|
+
title: "Exchange",
|
166
|
+
icon: <Exchange width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
167
|
+
href: "https://lux.exchange",
|
195
168
|
newTab: false,
|
196
|
-
contents:"
|
169
|
+
contents:"Buy, sell, trade, swap..."
|
197
170
|
},
|
198
171
|
{
|
199
|
-
|
200
|
-
|
201
|
-
|
172
|
+
groupName:'Blockchain',
|
173
|
+
title: "Market",
|
174
|
+
icon: <Market width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
175
|
+
href: "https://lux.market",
|
202
176
|
newTab: false,
|
203
|
-
contents:"
|
177
|
+
contents:"Digital collectibles & more"
|
204
178
|
},
|
205
179
|
{
|
206
|
-
|
207
|
-
|
208
|
-
|
180
|
+
groupName:'Blockchain',
|
181
|
+
title: "Shop",
|
182
|
+
icon: <Shop width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
183
|
+
href: "https://lux.market",
|
209
184
|
newTab: false,
|
210
|
-
contents:"
|
185
|
+
contents:"Find any Lux product for sale"
|
211
186
|
},
|
212
187
|
{
|
213
|
-
|
214
|
-
|
215
|
-
|
188
|
+
groupName:'Real World',
|
189
|
+
title: "Credit",
|
190
|
+
icon: <Credit width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
191
|
+
href: "https://lux.credit",
|
216
192
|
newTab: false,
|
217
|
-
contents:"
|
193
|
+
contents:"Risk free loans"
|
218
194
|
},
|
219
195
|
{
|
220
|
-
|
221
|
-
|
222
|
-
|
196
|
+
groupName:'Real World',
|
197
|
+
title: "Lux Finance",
|
198
|
+
icon: <LuxFinance width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
199
|
+
href: "https://lux.finance",
|
223
200
|
newTab: false,
|
224
|
-
contents:""
|
201
|
+
contents:"Financial arbitrage"
|
225
202
|
},
|
226
203
|
{
|
227
|
-
|
228
|
-
|
229
|
-
|
204
|
+
groupName:'More',
|
205
|
+
title: "Lux Quest",
|
206
|
+
icon: <LuxQuests width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
207
|
+
href: "https://lux.quest",
|
230
208
|
newTab: false,
|
231
|
-
contents:"
|
209
|
+
contents:"Go above and beyond"
|
232
210
|
}
|
233
211
|
]
|
234
212
|
},
|
@@ -236,101 +214,177 @@ export default [
|
|
236
214
|
title: "Network",
|
237
215
|
icon: "",
|
238
216
|
details: "Lux Network is a scalable, quantum-safe blockchain designed to offer high throughput and low latency. It is part of a broader ecosystem that includes various platforms and services aimed at integrating traditional finance (TradFi) with decentralized finance (DeFi), providing secure and efficient solutions for asset management, trading, and more.",
|
239
|
-
href: "https://lux.network
|
217
|
+
href: "https://lux.network/",
|
240
218
|
newTab: false,
|
241
219
|
childMenu: [
|
242
220
|
{
|
221
|
+
groupName:'Defi Tools',
|
243
222
|
title: "Bridge",
|
244
|
-
icon:
|
223
|
+
icon: <Bridge width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
245
224
|
href: "https://bridge.lux.network/",
|
246
225
|
newTab: false,
|
247
|
-
contents:""
|
248
|
-
},
|
249
|
-
{
|
250
|
-
title: "Coin",
|
251
|
-
icon: "",
|
252
|
-
href: "https://lux.network/coin?utm_medium=social&utm_source=linktree&utm_campaign=coins",
|
253
|
-
newTab: false,
|
254
|
-
contents:"" //insert string to here
|
226
|
+
contents:"Teleport assets"
|
255
227
|
},
|
256
228
|
{
|
229
|
+
groupName:'Defi Tools',
|
257
230
|
title: "Explorer",
|
258
|
-
icon:
|
259
|
-
href: "https://explorer.lux.network
|
231
|
+
icon: <Explorer width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
232
|
+
href: "https://explorer.lux.network/",
|
260
233
|
newTab: false,
|
261
|
-
contents:""
|
234
|
+
contents:"All transactions"
|
262
235
|
},
|
263
236
|
{
|
237
|
+
groupName:'Defi Tools',
|
264
238
|
title: "Launch Subnet",
|
265
|
-
icon:
|
266
|
-
href: "https://lux.
|
239
|
+
icon: <LaunchSubnet width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
240
|
+
href: "https://docs.lux.network/build/subnet/hello-subnet",
|
267
241
|
newTab: false,
|
268
|
-
contents:"
|
242
|
+
contents:"Easy, free, and superior"
|
269
243
|
},
|
270
244
|
{
|
271
|
-
|
272
|
-
|
273
|
-
|
245
|
+
groupName:'Earn',
|
246
|
+
title: "Coins",
|
247
|
+
icon: <Coins width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
248
|
+
href: "https://lux.network/coin",
|
274
249
|
newTab: false,
|
275
|
-
contents:"
|
250
|
+
contents:"Be part of the ecosystem"
|
276
251
|
},
|
277
252
|
{
|
253
|
+
groupName:'Earn',
|
278
254
|
title: "Safe",
|
279
|
-
icon:
|
280
|
-
href: "https://lux.network",
|
255
|
+
icon: <Safe width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
256
|
+
href: "https://safe.lux.network",
|
281
257
|
newTab: false,
|
282
|
-
contents:""
|
258
|
+
contents:"Multi-signature wallet"
|
283
259
|
},
|
284
260
|
{
|
285
|
-
|
286
|
-
|
287
|
-
|
261
|
+
groupName:'Earn',
|
262
|
+
title: "Lux Wallet",
|
263
|
+
icon: <Wallet width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
264
|
+
href: "https://wallet.lux.network",
|
288
265
|
newTab: false,
|
289
|
-
contents:"
|
266
|
+
contents:"Safe and quantum secure"
|
290
267
|
},
|
291
268
|
{
|
292
|
-
|
293
|
-
|
294
|
-
|
269
|
+
groupName:'Earn',
|
270
|
+
title: "Validators",
|
271
|
+
icon: <Validators width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
272
|
+
href: "https://lux.market/validator",
|
295
273
|
newTab: false,
|
296
|
-
contents:"
|
274
|
+
contents:"Own a part of the network"
|
275
|
+
},
|
276
|
+
{
|
277
|
+
groupName:'Get Access',
|
278
|
+
title: "Developer docs",
|
279
|
+
icon: <DeveloperDocs width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
280
|
+
href: "#",
|
281
|
+
newTab: false,
|
282
|
+
contents:"Software explained"
|
283
|
+
},
|
284
|
+
{
|
285
|
+
groupName:'Get Access',
|
286
|
+
title: "Open Source",
|
287
|
+
icon: <OpenSource width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
288
|
+
href: "#",
|
289
|
+
newTab: false,
|
290
|
+
contents:"Accessible for everyone"
|
291
|
+
},
|
292
|
+
{
|
293
|
+
groupName:'Get Access',
|
294
|
+
title: "Lux Pass",
|
295
|
+
icon: <LuxPass width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
296
|
+
href: "#",
|
297
|
+
newTab: false,
|
298
|
+
contents:"All access pass to network"
|
297
299
|
},
|
298
300
|
]
|
299
301
|
},
|
300
302
|
{
|
301
|
-
title: "
|
302
|
-
icon:
|
303
|
-
href: "
|
303
|
+
title: "Resources",
|
304
|
+
icon: '',
|
305
|
+
href: "",
|
304
306
|
newTab: false,
|
305
|
-
details: "
|
307
|
+
details: "",
|
306
308
|
childMenu: [
|
307
309
|
{
|
308
|
-
|
309
|
-
|
310
|
-
|
310
|
+
groupName:'Tools',
|
311
|
+
title: "Resource Center",
|
312
|
+
icon: <AIChat width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
313
|
+
href: "#",
|
311
314
|
newTab: false,
|
312
|
-
contents:""
|
315
|
+
contents:"Dynamic solutions"
|
313
316
|
},
|
314
317
|
{
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
+
groupName:'Tools',
|
319
|
+
title: "Integrations",
|
320
|
+
icon: <Integration width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
321
|
+
href: "#",
|
318
322
|
newTab: false,
|
319
|
-
contents:""
|
323
|
+
contents:"Simplified onboarding"
|
320
324
|
},
|
321
325
|
{
|
322
|
-
|
323
|
-
|
324
|
-
|
326
|
+
groupName:'Tools',
|
327
|
+
title: "Templates",
|
328
|
+
icon: <Templates width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
329
|
+
href: "#",
|
325
330
|
newTab: false,
|
326
|
-
contents:"
|
331
|
+
contents:"Speedy app development"
|
327
332
|
},
|
328
333
|
{
|
329
|
-
|
330
|
-
|
331
|
-
|
334
|
+
groupName:'Tools',
|
335
|
+
title: "Guides",
|
336
|
+
icon: <Guides width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
337
|
+
href: "#",
|
332
338
|
newTab: false,
|
333
|
-
contents:"
|
339
|
+
contents:"Find help quickly"
|
340
|
+
},
|
341
|
+
{
|
342
|
+
groupName:'Company',
|
343
|
+
title: "Customers",
|
344
|
+
icon: <Customers width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
345
|
+
href: "#",
|
346
|
+
newTab: false,
|
347
|
+
contents:"Trusted by the best teams"
|
348
|
+
},
|
349
|
+
{
|
350
|
+
groupName:'Company',
|
351
|
+
title: "Blog",
|
352
|
+
icon: <Blog width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
353
|
+
href: "#",
|
354
|
+
newTab: false,
|
355
|
+
contents:"Latest posts and changes"
|
356
|
+
},
|
357
|
+
{
|
358
|
+
groupName:'Company',
|
359
|
+
title: "Changelog",
|
360
|
+
icon: <ChangeLog width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
361
|
+
href: "#",
|
362
|
+
newTab: false,
|
363
|
+
contents:"Manage deployments"
|
364
|
+
},
|
365
|
+
{
|
366
|
+
groupName:'More',
|
367
|
+
title: "Developer docs",
|
368
|
+
icon: <DeveloperDocs width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
369
|
+
href: "#",
|
370
|
+
newTab: false,
|
371
|
+
contents:"Software explained"
|
372
|
+
},
|
373
|
+
{
|
374
|
+
groupName:'More',
|
375
|
+
title: "Customer Support",
|
376
|
+
icon: <CustomerSupport width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
377
|
+
href: "#",
|
378
|
+
newTab: false,
|
379
|
+
contents:"Dedicated help, 24/7"
|
380
|
+
},
|
381
|
+
{
|
382
|
+
groupName:'More',
|
383
|
+
title: "FAQs",
|
384
|
+
icon: <FAQs width={25} height={25} className='outline outline-1 outline-muted-2 outline-offset-4 rounded-sm'/>,
|
385
|
+
href: "#",
|
386
|
+
newTab: false,
|
387
|
+
contents:"Common queries"
|
334
388
|
}
|
335
389
|
]
|
336
390
|
},
|
@@ -1,26 +0,0 @@
|
|
1
|
-
'use client'
|
2
|
-
import React from 'react'
|
3
|
-
|
4
|
-
import { cn } from '@hanzo/ui/util'
|
5
|
-
|
6
|
-
import Logo from '../../logo'
|
7
|
-
import type { TShirtSize } from '@hanzo/ui/types'
|
8
|
-
|
9
|
-
const CloseButton: React.FC<{
|
10
|
-
close: () => void
|
11
|
-
size?: TShirtSize
|
12
|
-
className?: string
|
13
|
-
}> = ({
|
14
|
-
close,
|
15
|
-
size,
|
16
|
-
className=''
|
17
|
-
}) => (
|
18
|
-
<div
|
19
|
-
onClick={close}
|
20
|
-
className={cn('md:self-start', className)}
|
21
|
-
>
|
22
|
-
<Logo layout='text-only' href='/' size={size}/>
|
23
|
-
</div>
|
24
|
-
)
|
25
|
-
|
26
|
-
export default CloseButton
|