@adminide-stack/clock-tik-browser 12.0.18-alpha.2 → 12.0.18-alpha.4
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/lib/components/ExampleCard.d.ts +11 -0
- package/lib/components/ExampleCard.d.ts.map +1 -0
- package/lib/components/ExampleCard.js +35 -0
- package/lib/components/ExampleCard.js.map +1 -0
- package/lib/components/HelpCenterFooter.d.ts.map +1 -1
- package/lib/components/HelpCenterFooter.js +3 -14
- package/lib/components/HelpCenterFooter.js.map +1 -1
- package/lib/components/ProTipCard.d.ts +11 -0
- package/lib/components/ProTipCard.d.ts.map +1 -0
- package/lib/components/ProTipCard.js +28 -0
- package/lib/components/ProTipCard.js.map +1 -0
- package/lib/components/ResourceCard.d.ts +11 -0
- package/lib/components/ResourceCard.d.ts.map +1 -0
- package/lib/components/ResourceCard.js +33 -0
- package/lib/components/ResourceCard.js.map +1 -0
- package/lib/components/UseCaseCard.d.ts +13 -0
- package/lib/components/UseCaseCard.d.ts.map +1 -0
- package/lib/components/UseCaseCard.js +41 -0
- package/lib/components/UseCaseCard.js.map +1 -0
- package/lib/compute.d.ts.map +1 -1
- package/lib/compute.js +10 -1
- package/lib/compute.js.map +1 -1
- package/lib/pages/Demo/index.d.ts +3 -0
- package/lib/pages/Demo/index.d.ts.map +1 -0
- package/lib/pages/Demo/index.js +376 -0
- package/lib/pages/Demo/index.js.map +1 -0
- package/lib/pages/GetStarted/index.d.ts.map +1 -1
- package/lib/pages/GetStarted/index.js +345 -607
- package/lib/pages/GetStarted/index.js.map +1 -1
- package/lib/routes.json +11 -0
- package/package.json +3 -3
|
@@ -1,4 +1,266 @@
|
|
|
1
|
-
import {jsxs,jsx}from'react/jsx-runtime';import {Button}from'@admin-layout/tailwind-ui/shardui/button.js';
|
|
1
|
+
import {jsxs,jsx}from'react/jsx-runtime';import {Link}from'@remix-run/react';import {Button}from'@admin-layout/tailwind-ui/shardui/button.js';import {ExampleCard}from'../../components/ExampleCard.js';import {UseCaseCard}from'../../components/UseCaseCard.js';import {ProTipCard}from'../../components/ProTipCard.js';import {ResourceCard}from'../../components/ResourceCard.js';// SVG Icon Components
|
|
2
|
+
const SearchIcon = () => jsx("svg", {
|
|
3
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
+
fill: "none",
|
|
5
|
+
viewBox: "0 0 24 24",
|
|
6
|
+
strokeWidth: 1.5,
|
|
7
|
+
stroke: "currentColor",
|
|
8
|
+
className: "h-6 w-6",
|
|
9
|
+
children: jsx("path", {
|
|
10
|
+
strokeLinecap: "round",
|
|
11
|
+
strokeLinejoin: "round",
|
|
12
|
+
d: "m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607Z"
|
|
13
|
+
})
|
|
14
|
+
});
|
|
15
|
+
const BookIcon = () => jsx("svg", {
|
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17
|
+
fill: "none",
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
strokeWidth: 1.5,
|
|
20
|
+
stroke: "currentColor",
|
|
21
|
+
className: "h-6 w-6",
|
|
22
|
+
children: jsx("path", {
|
|
23
|
+
strokeLinecap: "round",
|
|
24
|
+
strokeLinejoin: "round",
|
|
25
|
+
d: "M12 6.042A8.967 8.967 0 0 0 6 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 0 1 6 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 0 1 6-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0 0 18 18a8.967 8.967 0 0 0-6 2.292m0-14.25v14.25"
|
|
26
|
+
})
|
|
27
|
+
});
|
|
28
|
+
const CodeIcon = () => jsx("svg", {
|
|
29
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
30
|
+
fill: "none",
|
|
31
|
+
viewBox: "0 0 24 24",
|
|
32
|
+
strokeWidth: 1.5,
|
|
33
|
+
stroke: "currentColor",
|
|
34
|
+
className: "h-6 w-6",
|
|
35
|
+
children: jsx("path", {
|
|
36
|
+
strokeLinecap: "round",
|
|
37
|
+
strokeLinejoin: "round",
|
|
38
|
+
d: "M14.25 9.75 16.5 12l-2.25 2.25m-4.5 0L7.5 12l2.25-2.25M6 20.25h12A2.25 2.25 0 0 0 20.25 18V6A2.25 2.25 0 0 0 18 3.75H6A2.25 2.25 0 0 0 3.75 6v12A2.25 2.25 0 0 0 6 20.25Z"
|
|
39
|
+
})
|
|
40
|
+
});
|
|
41
|
+
const QuestionIcon = () => jsx("svg", {
|
|
42
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
43
|
+
fill: "none",
|
|
44
|
+
viewBox: "0 0 24 24",
|
|
45
|
+
strokeWidth: 1.5,
|
|
46
|
+
stroke: "currentColor",
|
|
47
|
+
className: "h-6 w-6",
|
|
48
|
+
children: jsx("path", {
|
|
49
|
+
strokeLinecap: "round",
|
|
50
|
+
strokeLinejoin: "round",
|
|
51
|
+
d: "M9.879 7.519c1.171-1.025 3.071-1.025 4.242 0 1.172 1.025 1.172 2.687 0 3.712-.203.179-.43.326-.67.442-.745.361-1.45.999-1.45 1.827v.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9 5.25h.008v.008H12v-.008Z"
|
|
52
|
+
})
|
|
53
|
+
});
|
|
54
|
+
const DatabaseIcon = () => jsx("svg", {
|
|
55
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
56
|
+
fill: "none",
|
|
57
|
+
viewBox: "0 0 24 24",
|
|
58
|
+
strokeWidth: 1.5,
|
|
59
|
+
stroke: "currentColor",
|
|
60
|
+
className: "h-6 w-6",
|
|
61
|
+
children: jsx("path", {
|
|
62
|
+
strokeLinecap: "round",
|
|
63
|
+
strokeLinejoin: "round",
|
|
64
|
+
d: "M20.25 6.375c0 2.278-3.694 4.125-8.25 4.125S3.75 8.653 3.75 6.375m16.5 0c0-2.278-3.694-4.125-8.25-4.125S3.75 4.097 3.75 6.375m16.5 0v11.812c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125V6.375m16.5 0v3.75m-16.5-3.75v3.75m16.5 0v3.75C20.25 16.153 16.556 18 12 18s-8.25-1.847-8.25-4.125v-3.75m16.5 0c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125"
|
|
65
|
+
})
|
|
66
|
+
});
|
|
67
|
+
const DocumentIcon = () => jsx("svg", {
|
|
68
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
69
|
+
fill: "none",
|
|
70
|
+
viewBox: "0 0 24 24",
|
|
71
|
+
strokeWidth: 1.5,
|
|
72
|
+
stroke: "currentColor",
|
|
73
|
+
className: "h-6 w-6",
|
|
74
|
+
children: jsx("path", {
|
|
75
|
+
strokeLinecap: "round",
|
|
76
|
+
strokeLinejoin: "round",
|
|
77
|
+
d: "M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m2.25 0H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"
|
|
78
|
+
})
|
|
79
|
+
});
|
|
80
|
+
const WindowIcon = () => jsx("svg", {
|
|
81
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
82
|
+
fill: "none",
|
|
83
|
+
viewBox: "0 0 24 24",
|
|
84
|
+
strokeWidth: 1.5,
|
|
85
|
+
stroke: "currentColor",
|
|
86
|
+
className: "h-6 w-6",
|
|
87
|
+
children: jsx("path", {
|
|
88
|
+
strokeLinecap: "round",
|
|
89
|
+
strokeLinejoin: "round",
|
|
90
|
+
d: "M9 17.25v1.007a3 3 0 0 1-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0 1 15 18.257V17.25m6-12V15a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 15V5.25m18 0A2.25 2.25 0 0 0 18.75 3H5.25A2.25 2.25 0 0 0 3 5.25m18 0V12a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 12V5.25"
|
|
91
|
+
})
|
|
92
|
+
});
|
|
93
|
+
const GraduationIcon = () => jsx("svg", {
|
|
94
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
95
|
+
fill: "none",
|
|
96
|
+
viewBox: "0 0 24 24",
|
|
97
|
+
strokeWidth: 1.5,
|
|
98
|
+
stroke: "currentColor",
|
|
99
|
+
className: "h-6 w-6",
|
|
100
|
+
children: jsx("path", {
|
|
101
|
+
strokeLinecap: "round",
|
|
102
|
+
strokeLinejoin: "round",
|
|
103
|
+
d: "M4.26 10.147a60.438 60.438 0 0 0-.491 6.347A48.62 48.62 0 0 1 12 20.904a48.62 48.62 0 0 1 8.232-4.41 60.46 60.46 0 0 0-.491-6.347m-15.482 0a50.636 50.636 0 0 0-2.658-.813A59.906 59.906 0 0 1 12 3.493a59.903 59.903 0 0 1 10.399 5.84c-.896.248-1.783.52-2.658.814m-15.482 0A50.717 50.717 0 0 1 12 13.489a50.702 50.702 0 0 1 7.74-3.342M6.75 15a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm0 0v-3.675A55.378 55.378 0 0 1 12 8.443m-7.007 11.55A5.981 5.981 0 0 0 6.75 15.75v-1.5"
|
|
104
|
+
})
|
|
105
|
+
});
|
|
106
|
+
const BriefcaseIcon = () => jsx("svg", {
|
|
107
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
108
|
+
fill: "none",
|
|
109
|
+
viewBox: "0 0 24 24",
|
|
110
|
+
strokeWidth: 1.5,
|
|
111
|
+
stroke: "currentColor",
|
|
112
|
+
className: "h-6 w-6",
|
|
113
|
+
children: jsx("path", {
|
|
114
|
+
strokeLinecap: "round",
|
|
115
|
+
strokeLinejoin: "round",
|
|
116
|
+
d: "M20.25 14.15v4.25c0 1.094-.787 2.036-1.872 2.18-2.087.277-4.216.42-6.378.42s-4.291-.143-6.378-.42c-1.085-.144-1.872-1.086-1.872-2.18v-4.25m16.5 0a2.18 2.18 0 0 0 .75-1.661V8.706c0-1.081-.768-2.015-1.837-2.175a48.114 48.114 0 0 0-3.413-.387m4.5 8.006c-.194.165-.42.295-.673.38A23.978 23.978 0 0 1 12 15.75c-2.648 0-5.195-.429-7.577-1.22a2.016 2.016 0 0 1-.673-.38m0 0A2.18 2.18 0 0 1 3 12.489V8.706c0-1.081.768-2.015 1.837-2.175a48.111 48.111 0 0 1 3.413-.387m7.5 0V5.25A2.25 2.25 0 0 0 13.5 3h-3a2.25 2.25 0 0 0-2.25 2.25v.894m7.5 0a48.667 48.667 0 0 0-7.5 0M12 12.75h.008v.008H12v-.008Z"
|
|
117
|
+
})
|
|
118
|
+
});
|
|
119
|
+
const UserIcon = () => jsx("svg", {
|
|
120
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
121
|
+
fill: "none",
|
|
122
|
+
viewBox: "0 0 24 24",
|
|
123
|
+
strokeWidth: 1.5,
|
|
124
|
+
stroke: "currentColor",
|
|
125
|
+
className: "h-6 w-6",
|
|
126
|
+
children: jsx("path", {
|
|
127
|
+
strokeLinecap: "round",
|
|
128
|
+
strokeLinejoin: "round",
|
|
129
|
+
d: "M15.75 6a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0ZM4.501 20.118a7.5 7.5 0 0 1 14.998 0A17.933 17.933 0 0 1 12 21.75c-2.676 0-5.216-.584-7.499-1.632Z"
|
|
130
|
+
})
|
|
131
|
+
});
|
|
132
|
+
const GridIcon = () => jsx("svg", {
|
|
133
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
134
|
+
fill: "none",
|
|
135
|
+
viewBox: "0 0 24 24",
|
|
136
|
+
strokeWidth: 1.5,
|
|
137
|
+
stroke: "currentColor",
|
|
138
|
+
className: "h-6 w-6",
|
|
139
|
+
children: jsx("path", {
|
|
140
|
+
strokeLinecap: "round",
|
|
141
|
+
strokeLinejoin: "round",
|
|
142
|
+
d: "M3.75 6A2.25 2.25 0 0 1 6 3.75h2.25A2.25 2.25 0 0 1 10.5 6v2.25a2.25 2.25 0 0 1-2.25 2.25H6a2.25 2.25 0 0 1-2.25-2.25V6ZM3.75 15.75A2.25 2.25 0 0 1 6 13.5h2.25a2.25 2.25 0 0 1 2.25 2.25V18a2.25 2.25 0 0 1-2.25 2.25H6A2.25 2.25 0 0 1 3.75 18v-2.25ZM13.5 6a2.25 2.25 0 0 1 2.25-2.25H18A2.25 2.25 0 0 1 20.25 6v2.25A2.25 2.25 0 0 1 18 10.5h-2.25a2.25 2.25 0 0 1-2.25-2.25V6ZM13.5 15.75a2.25 2.25 0 0 1 2.25-2.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-2.25A2.25 2.25 0 0 1 13.5 18v-2.25Z"
|
|
143
|
+
})
|
|
144
|
+
});
|
|
145
|
+
const LockIcon = () => jsx("svg", {
|
|
146
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
147
|
+
fill: "none",
|
|
148
|
+
viewBox: "0 0 24 24",
|
|
149
|
+
strokeWidth: 1.5,
|
|
150
|
+
stroke: "currentColor",
|
|
151
|
+
className: "h-6 w-6",
|
|
152
|
+
children: jsx("path", {
|
|
153
|
+
strokeLinecap: "round",
|
|
154
|
+
strokeLinejoin: "round",
|
|
155
|
+
d: "M16.5 10.5V6.75a4.5 4.5 0 1 0-9 0v3.75m-.75 11.25h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H6.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25Z"
|
|
156
|
+
})
|
|
157
|
+
});
|
|
158
|
+
const CommunityIcon = () => jsx("svg", {
|
|
159
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
160
|
+
fill: "none",
|
|
161
|
+
viewBox: "0 0 24 24",
|
|
162
|
+
strokeWidth: 1.5,
|
|
163
|
+
stroke: "currentColor",
|
|
164
|
+
className: "h-6 w-6",
|
|
165
|
+
children: jsx("path", {
|
|
166
|
+
strokeLinecap: "round",
|
|
167
|
+
strokeLinejoin: "round",
|
|
168
|
+
d: "M18 18.72a9.094 9.094 0 0 0 3.741-.479 3 3 0 0 0-4.682-2.72m.94 3.198.001.031c0 .225-.012.447-.037.666A11.944 11.944 0 0 1 12 21c-2.17 0-4.207-.576-5.963-1.584A6.062 6.062 0 0 1 6 18.719m12 0a5.971 5.971 0 0 0-.941-3.197m0 0A5.995 5.995 0 0 0 12 12.75a5.995 5.995 0 0 0-5.058 2.772m0 0a3 3 0 0 0-4.681 2.72 8.986 8.986 0 0 0 3.74.477m.94-3.197a5.971 5.971 0 0 0-.94 3.197M15 6.75a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm6 3a2.25 2.25 0 1 1-4.5 0 2.25 2.25 0 0 1 4.5 0Zm-13.5 0a2.25 2.25 0 1 1-4.5 0 2.25 2.25 0 0 1 4.5 0Z"
|
|
169
|
+
})
|
|
170
|
+
});
|
|
171
|
+
const GetStartedPage = () => {
|
|
172
|
+
// Data arrays - defined inside component to allow JSX
|
|
173
|
+
const exampleCards = [{
|
|
174
|
+
icon: SearchIcon,
|
|
175
|
+
title: '"I need a quick healthy recipe"',
|
|
176
|
+
description: 'Clockbook can find and provide you with recipes that are quick to make, use healthy ingredients, and suit your taste preferences.'
|
|
177
|
+
}, {
|
|
178
|
+
icon: BookIcon,
|
|
179
|
+
title: '"Shopping advice for a new pair of running headphones"',
|
|
180
|
+
description: "Clockbook's curated insights will get you specific, informed recommendations with data from reviews, forums, and reliable sources."
|
|
181
|
+
}, {
|
|
182
|
+
icon: CodeIcon,
|
|
183
|
+
title: '"Want to learn Python, but not sure where to begin?"',
|
|
184
|
+
description: 'Clockbook is the perfect helper - just a few quick prompts using the interactive panel and it will create a personalized learning plan.'
|
|
185
|
+
}];
|
|
186
|
+
const useCases = [{
|
|
187
|
+
icon: QuestionIcon,
|
|
188
|
+
title: 'Answering questions',
|
|
189
|
+
description: 'When faced with tough questions, Clockbook goes beyond normal search engines to provide answers from reliable sources, synthesizing information with citations to help you better understand complex topics.',
|
|
190
|
+
features: ['Get reliable information with proper citations', 'Find answers to specific, complex questions quickly'],
|
|
191
|
+
iconColor: 'from-blue-100 to-blue-200 text-blue-600'
|
|
192
|
+
}, {
|
|
193
|
+
icon: BookIcon,
|
|
194
|
+
title: 'Exploring topics in depth',
|
|
195
|
+
description: "Clockbook's Pro Search feature provides a guided exploration of topics with detailed insights from experts, enabling you to discover connections and gain depth on subjects you're researching.",
|
|
196
|
+
linkText: 'Learn More',
|
|
197
|
+
linkHref: '#',
|
|
198
|
+
iconColor: 'from-purple-100 to-purple-200 text-purple-600'
|
|
199
|
+
}, {
|
|
200
|
+
icon: DatabaseIcon,
|
|
201
|
+
title: 'Organizing your Library',
|
|
202
|
+
description: 'Create your Threads in Clockbook to collect related topics, build collections and easily access content whenever you need it.',
|
|
203
|
+
features: ['Save important information for quick reference', 'Organize research by topics and subtopics'],
|
|
204
|
+
iconColor: 'from-green-100 to-green-200 text-green-600'
|
|
205
|
+
}, {
|
|
206
|
+
icon: DocumentIcon,
|
|
207
|
+
title: 'Interacting with your data',
|
|
208
|
+
description: 'Ask questions about your files like PDFs and CSVs. Clockbook can process the content, understand its structure, and provide insights based on your specific queries.',
|
|
209
|
+
features: ['Extract insights from complex documents', 'Analyze data without programming knowledge'],
|
|
210
|
+
iconColor: 'from-orange-100 to-orange-200 text-orange-600'
|
|
211
|
+
}];
|
|
212
|
+
const proSearchExamples = [{
|
|
213
|
+
icon: WindowIcon,
|
|
214
|
+
title: 'Travel Planning',
|
|
215
|
+
description: '"I\'m planning to take three days in Kyoto - what itinerary would you recommend?"'
|
|
216
|
+
}, {
|
|
217
|
+
icon: GraduationIcon,
|
|
218
|
+
title: 'Academic Research',
|
|
219
|
+
description: '"Find recent studies on solar panel recycling and specifically how recycling has improved."'
|
|
220
|
+
}, {
|
|
221
|
+
icon: BriefcaseIcon,
|
|
222
|
+
title: 'Professional Research',
|
|
223
|
+
description: 'Pro Search delivers the data you need to make informed business decisions with reliable sources.'
|
|
224
|
+
}, {
|
|
225
|
+
icon: UserIcon,
|
|
226
|
+
title: 'Idea Briefings',
|
|
227
|
+
description: 'Pro Search compiles deep from multiple angles, giving you a balanced view of current events.'
|
|
228
|
+
}];
|
|
229
|
+
const proTips = [{
|
|
230
|
+
icon: GridIcon,
|
|
231
|
+
title: 'Smart File Organization',
|
|
232
|
+
description: "Save time by using the filters to narrow your results and find exactly what you're looking for. The faceted navigation helps you quickly drill down into specific categories.",
|
|
233
|
+
linkText: 'Learn more',
|
|
234
|
+
linkHref: '#',
|
|
235
|
+
iconColor: 'from-emerald-100 to-emerald-200 text-emerald-600'
|
|
236
|
+
}, {
|
|
237
|
+
icon: UserIcon,
|
|
238
|
+
title: 'Personalize Your Experience',
|
|
239
|
+
description: 'Adjust settings like language, content format, and tone to customize your results. Creating a profile helps us deliver more personalized experiences.',
|
|
240
|
+
linkText: 'Learn more',
|
|
241
|
+
linkHref: '#',
|
|
242
|
+
iconColor: 'from-violet-100 to-violet-200 text-violet-600'
|
|
243
|
+
}, {
|
|
244
|
+
icon: LockIcon,
|
|
245
|
+
title: 'Privacy & Collaboration',
|
|
246
|
+
description: 'By default, your Threads and Spaces are private. You can decide to share with others using our collaboration features and sharing settings.',
|
|
247
|
+
linkText: 'Learn more',
|
|
248
|
+
linkHref: '#',
|
|
249
|
+
iconColor: 'from-rose-100 to-rose-200 text-rose-600'
|
|
250
|
+
}];
|
|
251
|
+
const resources = [{
|
|
252
|
+
icon: QuestionIcon,
|
|
253
|
+
title: 'Frequently Asked Questions',
|
|
254
|
+
description: 'Get answers to common questions and troubleshooting tips',
|
|
255
|
+
linkText: 'View more',
|
|
256
|
+
linkHref: '/help-center'
|
|
257
|
+
}, {
|
|
258
|
+
icon: CommunityIcon,
|
|
259
|
+
title: 'Join Our Community',
|
|
260
|
+
description: 'Connect with other users and share your experiences',
|
|
261
|
+
linkText: 'Explore',
|
|
262
|
+
linkHref: '/help-center'
|
|
263
|
+
}];
|
|
2
264
|
return jsxs("div", {
|
|
3
265
|
className: "min-h-screen bg-background",
|
|
4
266
|
children: [jsx("section", {
|
|
@@ -17,13 +279,19 @@ import {jsxs,jsx}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
17
279
|
children: "Everything you need to know to unlock the power of Clockbook and transform how you search, learn, and discover."
|
|
18
280
|
}), jsxs("div", {
|
|
19
281
|
className: "flex flex-wrap gap-4",
|
|
20
|
-
children: [jsx(
|
|
21
|
-
|
|
22
|
-
children:
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
282
|
+
children: [jsx(Link, {
|
|
283
|
+
to: "/help-center",
|
|
284
|
+
children: jsx(Button, {
|
|
285
|
+
className: "bg-primary-foreground text-primary hover:bg-primary-foreground/90 px-8 py-3 text-base font-medium",
|
|
286
|
+
children: "Start Exploring"
|
|
287
|
+
})
|
|
288
|
+
}), jsx(Link, {
|
|
289
|
+
to: "/demo",
|
|
290
|
+
children: jsx(Button, {
|
|
291
|
+
variant: "outline",
|
|
292
|
+
className: "border-white text-foreground hover:bg-primary/10 px-8 py-3 text-base font-medium",
|
|
293
|
+
children: "Watch Demo"
|
|
294
|
+
})
|
|
27
295
|
})]
|
|
28
296
|
})]
|
|
29
297
|
}), jsx("div", {
|
|
@@ -77,120 +345,16 @@ import {jsxs,jsx}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
77
345
|
className: "mb-8 text-2xl font-semibold text-foreground",
|
|
78
346
|
children: "See Clockbook in Action"
|
|
79
347
|
})
|
|
80
|
-
}),
|
|
348
|
+
}), jsx("div", {
|
|
81
349
|
className: "grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3",
|
|
82
|
-
children:
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
strokeWidth: 1.5,
|
|
91
|
-
stroke: "currentColor",
|
|
92
|
-
className: "h-6 w-6",
|
|
93
|
-
children: jsx("path", {
|
|
94
|
-
strokeLinecap: "round",
|
|
95
|
-
strokeLinejoin: "round",
|
|
96
|
-
d: "m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607Z"
|
|
97
|
-
})
|
|
98
|
-
})
|
|
99
|
-
}), jsxs("div", {
|
|
100
|
-
className: "flex flex-col",
|
|
101
|
-
children: [jsx("h4", {
|
|
102
|
-
className: "mb-3 text-lg font-semibold text-foreground group-hover:text-primary transition-colors",
|
|
103
|
-
children: "\"I need a quick healthy recipe\""
|
|
104
|
-
}), jsx("p", {
|
|
105
|
-
className: "mb-6 text-sm leading-relaxed text-muted-foreground",
|
|
106
|
-
children: "Clockbook can find and provide you with recipes that are quick to make, use healthy ingredients, and suit your taste preferences."
|
|
107
|
-
}), jsx(Button, {
|
|
108
|
-
variant: "link",
|
|
109
|
-
className: "p-0 text-sm text-primary hover:text-primary/80 self-start",
|
|
110
|
-
children: jsxs("div", {
|
|
111
|
-
className: "flex items-center gap-1",
|
|
112
|
-
children: ["View example", ' ', jsx("span", {
|
|
113
|
-
className: "ml-1 transition-transform group-hover:translate-x-1",
|
|
114
|
-
children: "\u2192"
|
|
115
|
-
})]
|
|
116
|
-
})
|
|
117
|
-
})]
|
|
118
|
-
})]
|
|
119
|
-
}), jsxs("div", {
|
|
120
|
-
className: "group flex cursor-pointer items-start gap-6 rounded-xl bg-card p-8 shadow-sm transition-all hover:bg-primary/5 hover:shadow-lg hover:-translate-y-1",
|
|
121
|
-
children: [jsx("div", {
|
|
122
|
-
className: "flex h-12 w-12 shrink-0 items-center justify-center rounded-full bg-gradient-to-br from-primary/10 to-primary/20 text-primary group-hover:from-primary/20 group-hover:to-primary/30 transition-all",
|
|
123
|
-
children: jsx("svg", {
|
|
124
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
125
|
-
fill: "none",
|
|
126
|
-
viewBox: "0 0 24 24",
|
|
127
|
-
strokeWidth: 1.5,
|
|
128
|
-
stroke: "currentColor",
|
|
129
|
-
className: "h-6 w-6",
|
|
130
|
-
children: jsx("path", {
|
|
131
|
-
strokeLinecap: "round",
|
|
132
|
-
strokeLinejoin: "round",
|
|
133
|
-
d: "M12 6.042A8.967 8.967 0 0 0 6 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 0 1 6 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 0 1 6-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0 0 18 18a8.967 8.967 0 0 0-6 2.292m0-14.25v14.25"
|
|
134
|
-
})
|
|
135
|
-
})
|
|
136
|
-
}), jsxs("div", {
|
|
137
|
-
className: "flex flex-col",
|
|
138
|
-
children: [jsx("h4", {
|
|
139
|
-
className: "mb-3 text-lg font-semibold text-foreground group-hover:text-primary transition-colors",
|
|
140
|
-
children: "\"Shopping advice for a new pair of running headphones\""
|
|
141
|
-
}), jsx("p", {
|
|
142
|
-
className: "mb-6 text-sm leading-relaxed text-muted-foreground",
|
|
143
|
-
children: "Clockbook's curated insights will get you specific, informed recommendations with data from reviews, forums, and reliable sources."
|
|
144
|
-
}), jsx(Button, {
|
|
145
|
-
variant: "link",
|
|
146
|
-
className: "p-0 text-sm text-primary hover:text-primary/80 self-start",
|
|
147
|
-
children: jsxs("div", {
|
|
148
|
-
className: "flex items-center gap-1",
|
|
149
|
-
children: ["View example", ' ', jsx("span", {
|
|
150
|
-
className: "ml-1 transition-transform group-hover:translate-x-1",
|
|
151
|
-
children: "\u2192"
|
|
152
|
-
})]
|
|
153
|
-
})
|
|
154
|
-
})]
|
|
155
|
-
})]
|
|
156
|
-
}), jsxs("div", {
|
|
157
|
-
className: "group flex cursor-pointer items-start gap-6 rounded-xl bg-card p-8 shadow-sm transition-all hover:bg-primary/5 hover:shadow-lg hover:-translate-y-1",
|
|
158
|
-
children: [jsx("div", {
|
|
159
|
-
className: "flex h-12 w-12 shrink-0 items-center justify-center rounded-full bg-gradient-to-br from-primary/10 to-primary/20 text-primary group-hover:from-primary/20 group-hover:to-primary/30 transition-all",
|
|
160
|
-
children: jsx("svg", {
|
|
161
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
162
|
-
fill: "none",
|
|
163
|
-
viewBox: "0 0 24 24",
|
|
164
|
-
strokeWidth: 1.5,
|
|
165
|
-
stroke: "currentColor",
|
|
166
|
-
className: "h-6 w-6",
|
|
167
|
-
children: jsx("path", {
|
|
168
|
-
strokeLinecap: "round",
|
|
169
|
-
strokeLinejoin: "round",
|
|
170
|
-
d: "M14.25 9.75 16.5 12l-2.25 2.25m-4.5 0L7.5 12l2.25-2.25M6 20.25h12A2.25 2.25 0 0 0 20.25 18V6A2.25 2.25 0 0 0 18 3.75H6A2.25 2.25 0 0 0 3.75 6v12A2.25 2.25 0 0 0 6 20.25Z"
|
|
171
|
-
})
|
|
172
|
-
})
|
|
173
|
-
}), jsxs("div", {
|
|
174
|
-
className: "flex flex-col",
|
|
175
|
-
children: [jsx("h4", {
|
|
176
|
-
className: "mb-3 text-lg font-semibold text-foreground group-hover:text-primary transition-colors",
|
|
177
|
-
children: "\"Want to learn Python, but not sure where to begin?\""
|
|
178
|
-
}), jsx("p", {
|
|
179
|
-
className: "mb-6 text-sm leading-relaxed text-muted-foreground",
|
|
180
|
-
children: "Clockbook is the perfect helper - just a few quick prompts using the interactive panel and it will create a personalized learning plan."
|
|
181
|
-
}), jsx(Button, {
|
|
182
|
-
variant: "link",
|
|
183
|
-
className: "p-0 text-sm text-primary hover:text-primary/80 self-start",
|
|
184
|
-
children: jsxs("div", {
|
|
185
|
-
className: "flex items-center gap-1",
|
|
186
|
-
children: ["View example", ' ', jsx("span", {
|
|
187
|
-
className: "ml-1 transition-transform group-hover:translate-x-1",
|
|
188
|
-
children: "\u2192"
|
|
189
|
-
})]
|
|
190
|
-
})
|
|
191
|
-
})]
|
|
192
|
-
})]
|
|
193
|
-
})]
|
|
350
|
+
children: exampleCards.map((card, index) => {
|
|
351
|
+
const IconComponent = card.icon;
|
|
352
|
+
return jsx(ExampleCard, {
|
|
353
|
+
icon: jsx(IconComponent, {}),
|
|
354
|
+
title: card.title,
|
|
355
|
+
description: card.description
|
|
356
|
+
}, index);
|
|
357
|
+
})
|
|
194
358
|
})]
|
|
195
359
|
})]
|
|
196
360
|
}), jsx("section", {
|
|
@@ -206,166 +370,34 @@ import {jsxs,jsx}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
206
370
|
className: "mx-auto max-w-3xl text-xl text-muted-foreground",
|
|
207
371
|
children: "Discover the powerful ways Clockbook can transform your workflow and enhance your productivity"
|
|
208
372
|
})]
|
|
209
|
-
}),
|
|
373
|
+
}), jsx("div", {
|
|
210
374
|
className: "grid gap-12 md:grid-cols-2",
|
|
211
|
-
children:
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
children: jsx("path", {
|
|
225
|
-
strokeLinecap: "round",
|
|
226
|
-
strokeLinejoin: "round",
|
|
227
|
-
d: "M9.879 7.519c1.171-1.025 3.071-1.025 4.242 0 1.172 1.025 1.172 2.687 0 3.712-.203.179-.43.326-.67.442-.745.361-1.45.999-1.45 1.827v.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9 5.25h.008v.008H12v-.008Z"
|
|
228
|
-
})
|
|
229
|
-
})
|
|
230
|
-
}), jsx("h3", {
|
|
231
|
-
className: "text-2xl font-semibold text-foreground",
|
|
232
|
-
children: "Answering questions"
|
|
233
|
-
})]
|
|
234
|
-
}), jsx("p", {
|
|
235
|
-
className: "mb-6 text-muted-foreground leading-relaxed",
|
|
236
|
-
children: "When faced with tough questions, Clockbook goes beyond normal search engines to provide answers from reliable sources, synthesizing information with citations to help you better understand complex topics."
|
|
237
|
-
}), jsxs("ul", {
|
|
238
|
-
className: "space-y-2 text-sm text-muted-foreground",
|
|
239
|
-
children: [jsxs("li", {
|
|
240
|
-
className: "flex items-center gap-2",
|
|
241
|
-
children: [jsx("div", {
|
|
242
|
-
className: "h-1.5 w-1.5 rounded-full bg-primary/5"
|
|
243
|
-
}), "Get reliable information with proper citations"]
|
|
244
|
-
}), jsxs("li", {
|
|
245
|
-
className: "flex items-center gap-2",
|
|
246
|
-
children: [jsx("div", {
|
|
247
|
-
className: "h-1.5 w-1.5 rounded-full bg-primary/5"
|
|
248
|
-
}), "Find answers to specific, complex questions quickly"]
|
|
249
|
-
})]
|
|
250
|
-
})]
|
|
251
|
-
}), jsxs("div", {
|
|
252
|
-
className: "group rounded-xl bg-card p-8 shadow-sm transition-all hover:shadow-lg hover:-translate-y-1",
|
|
253
|
-
children: [jsxs("div", {
|
|
254
|
-
className: "mb-6 flex items-center gap-4",
|
|
255
|
-
children: [jsx("div", {
|
|
256
|
-
className: "flex h-12 w-12 items-center justify-center rounded-full bg-gradient-to-br from-purple-100 to-purple-200 text-purple-600",
|
|
257
|
-
children: jsx("svg", {
|
|
258
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
259
|
-
fill: "none",
|
|
260
|
-
viewBox: "0 0 24 24",
|
|
261
|
-
strokeWidth: 1.5,
|
|
262
|
-
stroke: "currentColor",
|
|
263
|
-
className: "h-6 w-6",
|
|
264
|
-
children: jsx("path", {
|
|
265
|
-
strokeLinecap: "round",
|
|
266
|
-
strokeLinejoin: "round",
|
|
267
|
-
d: "M12 6.042A8.967 8.967 0 0 0 6 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 0 1 6 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 0 1 6-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0 0 18 18a8.967 8.967 0 0 0-6 2.292m0-14.25v14.25"
|
|
268
|
-
})
|
|
269
|
-
})
|
|
270
|
-
}), jsx("h3", {
|
|
271
|
-
className: "text-2xl font-semibold text-foreground",
|
|
272
|
-
children: "Exploring topics in depth"
|
|
273
|
-
})]
|
|
274
|
-
}), jsx("p", {
|
|
275
|
-
className: "mb-6 text-muted-foreground leading-relaxed",
|
|
276
|
-
children: "Clockbook's Pro Search feature provides a guided exploration of topics with detailed insights from experts, enabling you to discover connections and gain depth on subjects you're researching."
|
|
277
|
-
}), jsxs("a", {
|
|
278
|
-
href: "#",
|
|
279
|
-
className: "inline-flex items-center gap-2 text-sm font-medium text-primary/80 hover:text-primary transition-colors",
|
|
280
|
-
children: ["Learn More ", jsx("span", {
|
|
281
|
-
className: "transition-transform group-hover:translate-x-1",
|
|
282
|
-
children: "\u2192"
|
|
283
|
-
})]
|
|
284
|
-
})]
|
|
285
|
-
})]
|
|
286
|
-
}), jsxs("div", {
|
|
375
|
+
children: useCases.slice(0, 2).map((useCase, index) => {
|
|
376
|
+
const IconComponent = useCase.icon;
|
|
377
|
+
return jsx(UseCaseCard, {
|
|
378
|
+
icon: jsx(IconComponent, {}),
|
|
379
|
+
title: useCase.title,
|
|
380
|
+
description: useCase.description,
|
|
381
|
+
features: useCase.features,
|
|
382
|
+
linkText: useCase.linkText,
|
|
383
|
+
linkHref: useCase.linkHref,
|
|
384
|
+
iconColor: useCase.iconColor
|
|
385
|
+
}, index);
|
|
386
|
+
})
|
|
387
|
+
}), jsx("div", {
|
|
287
388
|
className: "mt-12 grid gap-12 md:grid-cols-2",
|
|
288
|
-
children:
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
className: "h-6 w-6",
|
|
301
|
-
children: jsx("path", {
|
|
302
|
-
strokeLinecap: "round",
|
|
303
|
-
strokeLinejoin: "round",
|
|
304
|
-
d: "M20.25 6.375c0 2.278-3.694 4.125-8.25 4.125S3.75 8.653 3.75 6.375m16.5 0c0-2.278-3.694-4.125-8.25-4.125S3.75 4.097 3.75 6.375m16.5 0v11.812c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125V6.375m16.5 0v3.75m-16.5-3.75v3.75m16.5 0v3.75C20.25 16.153 16.556 18 12 18s-8.25-1.847-8.25-4.125v-3.75m16.5 0c0 2.278-3.694 4.125-8.25 4.125s-8.25-1.847-8.25-4.125"
|
|
305
|
-
})
|
|
306
|
-
})
|
|
307
|
-
}), jsx("h3", {
|
|
308
|
-
className: "text-2xl font-semibold text-foreground",
|
|
309
|
-
children: "Organizing your Library"
|
|
310
|
-
})]
|
|
311
|
-
}), jsx("p", {
|
|
312
|
-
className: "mb-6 text-muted-foreground leading-relaxed",
|
|
313
|
-
children: "Create your Threads in Clockbook to collect related topics, build collections and easily access content whenever you need it."
|
|
314
|
-
}), jsxs("ul", {
|
|
315
|
-
className: "space-y-2 text-sm text-muted-foreground",
|
|
316
|
-
children: [jsxs("li", {
|
|
317
|
-
className: "flex items-center gap-2",
|
|
318
|
-
children: [jsx("div", {
|
|
319
|
-
className: "h-1.5 w-1.5 rounded-full bg-primary/5"
|
|
320
|
-
}), "Save important information for quick reference"]
|
|
321
|
-
}), jsxs("li", {
|
|
322
|
-
className: "flex items-center gap-2",
|
|
323
|
-
children: [jsx("div", {
|
|
324
|
-
className: "h-1.5 w-1.5 rounded-full bg-primary/5"
|
|
325
|
-
}), "Organize research by topics and subtopics"]
|
|
326
|
-
})]
|
|
327
|
-
})]
|
|
328
|
-
}), jsxs("div", {
|
|
329
|
-
className: "group rounded-xl bg-card p-8 shadow-sm transition-all hover:shadow-lg hover:-translate-y-1",
|
|
330
|
-
children: [jsxs("div", {
|
|
331
|
-
className: "mb-6 flex items-center gap-4",
|
|
332
|
-
children: [jsx("div", {
|
|
333
|
-
className: "flex h-12 w-12 items-center justify-center rounded-full bg-gradient-to-br from-orange-100 to-orange-200 text-orange-600",
|
|
334
|
-
children: jsx("svg", {
|
|
335
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
336
|
-
fill: "none",
|
|
337
|
-
viewBox: "0 0 24 24",
|
|
338
|
-
strokeWidth: 1.5,
|
|
339
|
-
stroke: "currentColor",
|
|
340
|
-
className: "h-6 w-6",
|
|
341
|
-
children: jsx("path", {
|
|
342
|
-
strokeLinecap: "round",
|
|
343
|
-
strokeLinejoin: "round",
|
|
344
|
-
d: "M19.5 14.25v-2.625a3.375 3.375 0 0 0-3.375-3.375h-1.5A1.125 1.125 0 0 1 13.5 7.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H8.25m2.25 0H5.625c-.621 0-1.125.504-1.125 1.125v17.25c0 .621.504 1.125 1.125 1.125h12.75c.621 0 1.125-.504 1.125-1.125V11.25a9 9 0 0 0-9-9Z"
|
|
345
|
-
})
|
|
346
|
-
})
|
|
347
|
-
}), jsx("h3", {
|
|
348
|
-
className: "text-2xl font-semibold text-foreground",
|
|
349
|
-
children: "Interacting with your data"
|
|
350
|
-
})]
|
|
351
|
-
}), jsx("p", {
|
|
352
|
-
className: "mb-6 text-muted-foreground leading-relaxed",
|
|
353
|
-
children: "Ask questions about your files like PDFs and CSVs. Clockbook can process the content, understand its structure, and provide insights based on your specific queries."
|
|
354
|
-
}), jsxs("ul", {
|
|
355
|
-
className: "space-y-2 text-sm text-muted-foreground",
|
|
356
|
-
children: [jsxs("li", {
|
|
357
|
-
className: "flex items-center gap-2",
|
|
358
|
-
children: [jsx("div", {
|
|
359
|
-
className: "h-1.5 w-1.5 rounded-full bg-primary/5"
|
|
360
|
-
}), "Extract insights from complex documents"]
|
|
361
|
-
}), jsxs("li", {
|
|
362
|
-
className: "flex items-center gap-2",
|
|
363
|
-
children: [jsx("div", {
|
|
364
|
-
className: "h-1.5 w-1.5 rounded-full bg-primary/5"
|
|
365
|
-
}), "Analyze data without programming knowledge"]
|
|
366
|
-
})]
|
|
367
|
-
})]
|
|
368
|
-
})]
|
|
389
|
+
children: useCases.slice(2).map((useCase, index) => {
|
|
390
|
+
const IconComponent = useCase.icon;
|
|
391
|
+
return jsx(UseCaseCard, {
|
|
392
|
+
icon: jsx(IconComponent, {}),
|
|
393
|
+
title: useCase.title,
|
|
394
|
+
description: useCase.description,
|
|
395
|
+
features: useCase.features,
|
|
396
|
+
linkText: useCase.linkText,
|
|
397
|
+
linkHref: useCase.linkHref,
|
|
398
|
+
iconColor: useCase.iconColor
|
|
399
|
+
}, index + 2);
|
|
400
|
+
})
|
|
369
401
|
})]
|
|
370
402
|
})
|
|
371
403
|
}), jsx("section", {
|
|
@@ -408,157 +440,16 @@ import {jsxs,jsx}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
408
440
|
className: "mb-8 text-2xl font-semibold text-foreground",
|
|
409
441
|
children: "Pro Search Examples"
|
|
410
442
|
})
|
|
411
|
-
}),
|
|
443
|
+
}), jsx("div", {
|
|
412
444
|
className: "grid grid-cols-1 gap-8 md:grid-cols-2",
|
|
413
|
-
children:
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
strokeWidth: 1.5,
|
|
422
|
-
stroke: "currentColor",
|
|
423
|
-
className: "h-6 w-6",
|
|
424
|
-
children: jsx("path", {
|
|
425
|
-
strokeLinecap: "round",
|
|
426
|
-
strokeLinejoin: "round",
|
|
427
|
-
d: "M9 17.25v1.007a3 3 0 0 1-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0 1 15 18.257V17.25m6-12V15a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 15V5.25m18 0A2.25 2.25 0 0 0 18.75 3H5.25A2.25 2.25 0 0 0 3 5.25m18 0V12a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 12V5.25"
|
|
428
|
-
})
|
|
429
|
-
})
|
|
430
|
-
}), jsxs("div", {
|
|
431
|
-
className: "flex flex-col",
|
|
432
|
-
children: [jsx("h4", {
|
|
433
|
-
className: "mb-3 text-lg font-semibold text-foreground group-hover:text-primary transition-colors",
|
|
434
|
-
children: "Travel Planning"
|
|
435
|
-
}), jsx("p", {
|
|
436
|
-
className: "mb-6 text-sm leading-relaxed text-muted-foreground",
|
|
437
|
-
children: "\"I'm planning to take three days in Kyoto - what itinerary would you recommend?\""
|
|
438
|
-
}), jsx(Button, {
|
|
439
|
-
variant: "link",
|
|
440
|
-
className: "p-0 text-sm text-primary hover:text-primary/80 self-start",
|
|
441
|
-
children: jsxs("div", {
|
|
442
|
-
className: "flex items-center gap-1",
|
|
443
|
-
children: ["View example", ' ', jsx("span", {
|
|
444
|
-
className: "ml-1 transition-transform group-hover:translate-x-1",
|
|
445
|
-
children: "\u2192"
|
|
446
|
-
})]
|
|
447
|
-
})
|
|
448
|
-
})]
|
|
449
|
-
})]
|
|
450
|
-
}), jsxs("div", {
|
|
451
|
-
className: "group flex cursor-pointer items-start gap-6 rounded-xl bg-card p-8 shadow-sm transition-all hover:bg-primary/5 hover:shadow-lg hover:-translate-y-1",
|
|
452
|
-
children: [jsx("div", {
|
|
453
|
-
className: "flex h-12 w-12 shrink-0 items-center justify-center rounded-full bg-gradient-to-br from-primary/10 to-primary/20 text-primary group-hover:from-primary/20 group-hover:to-primary/30 transition-all",
|
|
454
|
-
children: jsx("svg", {
|
|
455
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
456
|
-
fill: "none",
|
|
457
|
-
viewBox: "0 0 24 24",
|
|
458
|
-
strokeWidth: 1.5,
|
|
459
|
-
stroke: "currentColor",
|
|
460
|
-
className: "h-6 w-6",
|
|
461
|
-
children: jsx("path", {
|
|
462
|
-
strokeLinecap: "round",
|
|
463
|
-
strokeLinejoin: "round",
|
|
464
|
-
d: "M4.26 10.147a60.438 60.438 0 0 0-.491 6.347A48.62 48.62 0 0 1 12 20.904a48.62 48.62 0 0 1 8.232-4.41 60.46 60.46 0 0 0-.491-6.347m-15.482 0a50.636 50.636 0 0 0-2.658-.813A59.906 59.906 0 0 1 12 3.493a59.903 59.903 0 0 1 10.399 5.84c-.896.248-1.783.52-2.658.814m-15.482 0A50.717 50.717 0 0 1 12 13.489a50.702 50.702 0 0 1 7.74-3.342M6.75 15a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5Zm0 0v-3.675A55.378 55.378 0 0 1 12 8.443m-7.007 11.55A5.981 5.981 0 0 0 6.75 15.75v-1.5"
|
|
465
|
-
})
|
|
466
|
-
})
|
|
467
|
-
}), jsxs("div", {
|
|
468
|
-
className: "flex flex-col",
|
|
469
|
-
children: [jsx("h4", {
|
|
470
|
-
className: "mb-3 text-lg font-semibold text-foreground group-hover:text-primary transition-colors",
|
|
471
|
-
children: "Academic Research"
|
|
472
|
-
}), jsx("p", {
|
|
473
|
-
className: "mb-6 text-sm leading-relaxed text-muted-foreground",
|
|
474
|
-
children: "\"Find recent studies on solar panel recycling and specifically how recycling has improved.\""
|
|
475
|
-
}), jsx(Button, {
|
|
476
|
-
variant: "link",
|
|
477
|
-
className: "p-0 text-sm text-primary hover:text-primary/80 self-start",
|
|
478
|
-
children: jsxs("div", {
|
|
479
|
-
className: "flex items-center gap-1",
|
|
480
|
-
children: ["View example", ' ', jsx("span", {
|
|
481
|
-
className: "ml-1 transition-transform group-hover:translate-x-1",
|
|
482
|
-
children: "\u2192"
|
|
483
|
-
})]
|
|
484
|
-
})
|
|
485
|
-
})]
|
|
486
|
-
})]
|
|
487
|
-
}), jsxs("div", {
|
|
488
|
-
className: "group flex cursor-pointer items-start gap-6 rounded-xl bg-card p-8 shadow-sm transition-all hover:bg-primary/5 hover:shadow-lg hover:-translate-y-1",
|
|
489
|
-
children: [jsx("div", {
|
|
490
|
-
className: "flex h-12 w-12 shrink-0 items-center justify-center rounded-full bg-gradient-to-br from-primary/10 to-primary/20 text-primary group-hover:from-primary/20 group-hover:to-primary/30 transition-all",
|
|
491
|
-
children: jsx("svg", {
|
|
492
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
493
|
-
fill: "none",
|
|
494
|
-
viewBox: "0 0 24 24",
|
|
495
|
-
strokeWidth: 1.5,
|
|
496
|
-
stroke: "currentColor",
|
|
497
|
-
className: "h-6 w-6",
|
|
498
|
-
children: jsx("path", {
|
|
499
|
-
strokeLinecap: "round",
|
|
500
|
-
strokeLinejoin: "round",
|
|
501
|
-
d: "M20.25 14.15v4.25c0 1.094-.787 2.036-1.872 2.18-2.087.277-4.216.42-6.378.42s-4.291-.143-6.378-.42c-1.085-.144-1.872-1.086-1.872-2.18v-4.25m16.5 0a2.18 2.18 0 0 0 .75-1.661V8.706c0-1.081-.768-2.015-1.837-2.175a48.114 48.114 0 0 0-3.413-.387m4.5 8.006c-.194.165-.42.295-.673.38A23.978 23.978 0 0 1 12 15.75c-2.648 0-5.195-.429-7.577-1.22a2.016 2.016 0 0 1-.673-.38m0 0A2.18 2.18 0 0 1 3 12.489V8.706c0-1.081.768-2.015 1.837-2.175a48.111 48.111 0 0 1 3.413-.387m7.5 0V5.25A2.25 2.25 0 0 0 13.5 3h-3a2.25 2.25 0 0 0-2.25 2.25v.894m7.5 0a48.667 48.667 0 0 0-7.5 0M12 12.75h.008v.008H12v-.008Z"
|
|
502
|
-
})
|
|
503
|
-
})
|
|
504
|
-
}), jsxs("div", {
|
|
505
|
-
className: "flex flex-col",
|
|
506
|
-
children: [jsx("h4", {
|
|
507
|
-
className: "mb-3 text-lg font-semibold text-foreground group-hover:text-primary transition-colors",
|
|
508
|
-
children: "Professional Research"
|
|
509
|
-
}), jsx("p", {
|
|
510
|
-
className: "mb-6 text-sm leading-relaxed text-muted-foreground",
|
|
511
|
-
children: "Pro Search delivers the data you need to make informed business decisions with reliable sources."
|
|
512
|
-
}), jsx(Button, {
|
|
513
|
-
variant: "link",
|
|
514
|
-
className: "p-0 text-sm text-primary hover:text-primary/80 self-start",
|
|
515
|
-
children: jsxs("div", {
|
|
516
|
-
className: "flex items-center gap-1",
|
|
517
|
-
children: ["View example", ' ', jsx("span", {
|
|
518
|
-
className: "ml-1 transition-transform group-hover:translate-x-1",
|
|
519
|
-
children: "\u2192"
|
|
520
|
-
})]
|
|
521
|
-
})
|
|
522
|
-
})]
|
|
523
|
-
})]
|
|
524
|
-
}), jsxs("div", {
|
|
525
|
-
className: "group flex cursor-pointer items-start gap-6 rounded-xl bg-card p-8 shadow-sm transition-all hover:bg-primary/5 hover:shadow-lg hover:-translate-y-1",
|
|
526
|
-
children: [jsx("div", {
|
|
527
|
-
className: "flex h-12 w-12 shrink-0 items-center justify-center rounded-full bg-gradient-to-br from-primary/10 to-primary/20 text-primary group-hover:from-primary/20 group-hover:to-primary/30 transition-all",
|
|
528
|
-
children: jsx("svg", {
|
|
529
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
530
|
-
fill: "none",
|
|
531
|
-
viewBox: "0 0 24 24",
|
|
532
|
-
strokeWidth: 1.5,
|
|
533
|
-
stroke: "currentColor",
|
|
534
|
-
className: "h-6 w-6",
|
|
535
|
-
children: jsx("path", {
|
|
536
|
-
strokeLinecap: "round",
|
|
537
|
-
strokeLinejoin: "round",
|
|
538
|
-
d: "M15.75 6a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0ZM4.501 20.118a7.5 7.5 0 0 1 14.998 0A17.933 17.933 0 0 1 12 21.75c-2.676 0-5.216-.584-7.499-1.632Z"
|
|
539
|
-
})
|
|
540
|
-
})
|
|
541
|
-
}), jsxs("div", {
|
|
542
|
-
className: "flex flex-col",
|
|
543
|
-
children: [jsx("h4", {
|
|
544
|
-
className: "mb-3 text-lg font-semibold text-foreground group-hover:text-primary transition-colors",
|
|
545
|
-
children: "Idea Briefings"
|
|
546
|
-
}), jsx("p", {
|
|
547
|
-
className: "mb-6 text-sm leading-relaxed text-muted-foreground",
|
|
548
|
-
children: "Pro Search compiles deep from multiple angles, giving you a balanced view of current events."
|
|
549
|
-
}), jsx(Button, {
|
|
550
|
-
variant: "link",
|
|
551
|
-
className: "p-0 text-sm text-primary hover:text-primary/80 self-start",
|
|
552
|
-
children: jsxs("div", {
|
|
553
|
-
className: "flex items-center gap-1",
|
|
554
|
-
children: ["View example", ' ', jsx("span", {
|
|
555
|
-
className: "ml-1 transition-transform group-hover:translate-x-1",
|
|
556
|
-
children: "\u2192"
|
|
557
|
-
})]
|
|
558
|
-
})
|
|
559
|
-
})]
|
|
560
|
-
})]
|
|
561
|
-
})]
|
|
445
|
+
children: proSearchExamples.map((example, index) => {
|
|
446
|
+
const IconComponent = example.icon;
|
|
447
|
+
return jsx(ExampleCard, {
|
|
448
|
+
icon: jsx(IconComponent, {}),
|
|
449
|
+
title: example.title,
|
|
450
|
+
description: example.description
|
|
451
|
+
}, index);
|
|
452
|
+
})
|
|
562
453
|
})]
|
|
563
454
|
})
|
|
564
455
|
}), jsx("section", {
|
|
@@ -574,111 +465,21 @@ import {jsxs,jsx}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
574
465
|
className: "mx-auto max-w-3xl text-xl text-muted-foreground",
|
|
575
466
|
children: "Here are three essential tips that will help you maximize your experience with Clockbook"
|
|
576
467
|
})]
|
|
577
|
-
}),
|
|
468
|
+
}), jsx("div", {
|
|
578
469
|
className: "grid gap-8 md:grid-cols-2 lg:grid-cols-3",
|
|
579
|
-
children:
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
children: jsx("path", {
|
|
593
|
-
strokeLinecap: "round",
|
|
594
|
-
strokeLinejoin: "round",
|
|
595
|
-
d: "M3.75 6A2.25 2.25 0 0 1 6 3.75h2.25A2.25 2.25 0 0 1 10.5 6v2.25a2.25 2.25 0 0 1-2.25 2.25H6a2.25 2.25 0 0 1-2.25-2.25V6ZM3.75 15.75A2.25 2.25 0 0 1 6 13.5h2.25a2.25 2.25 0 0 1 2.25 2.25V18a2.25 2.25 0 0 1-2.25 2.25H6A2.25 2.25 0 0 1 3.75 18v-2.25ZM13.5 6a2.25 2.25 0 0 1 2.25-2.25H18A2.25 2.25 0 0 1 20.25 6v2.25A2.25 2.25 0 0 1 18 10.5h-2.25a2.25 2.25 0 0 1-2.25-2.25V6ZM13.5 15.75a2.25 2.25 0 0 1 2.25-2.25H18a2.25 2.25 0 0 1 2.25 2.25V18A2.25 2.25 0 0 1 18 20.25h-2.25A2.25 2.25 0 0 1 13.5 18v-2.25Z"
|
|
596
|
-
})
|
|
597
|
-
})
|
|
598
|
-
}), jsx("h3", {
|
|
599
|
-
className: "text-xl font-semibold text-foreground",
|
|
600
|
-
children: "Smart File Organization"
|
|
601
|
-
})]
|
|
602
|
-
}), jsx("p", {
|
|
603
|
-
className: "mb-6 text-muted-foreground leading-relaxed",
|
|
604
|
-
children: "Save time by using the filters to narrow your results and find exactly what you're looking for. The faceted navigation helps you quickly drill down into specific categories."
|
|
605
|
-
}), jsxs("a", {
|
|
606
|
-
href: "#",
|
|
607
|
-
className: "inline-flex items-center gap-2 text-sm font-medium text-primary/80 hover:text-primary transition-colors",
|
|
608
|
-
children: ["Learn more ", jsx("span", {
|
|
609
|
-
className: "transition-transform group-hover:translate-x-1",
|
|
610
|
-
children: "\u2192"
|
|
611
|
-
})]
|
|
612
|
-
})]
|
|
613
|
-
}), jsxs("div", {
|
|
614
|
-
className: "group rounded-xl border border-border bg-card p-8 shadow-sm transition-all hover:shadow-lg hover:-translate-y-1",
|
|
615
|
-
children: [jsxs("div", {
|
|
616
|
-
className: "mb-6 flex items-center gap-4",
|
|
617
|
-
children: [jsx("div", {
|
|
618
|
-
className: "flex h-12 w-12 items-center justify-center rounded-full bg-gradient-to-br from-violet-100 to-violet-200 text-violet-600",
|
|
619
|
-
children: jsx("svg", {
|
|
620
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
621
|
-
fill: "none",
|
|
622
|
-
viewBox: "0 0 24 24",
|
|
623
|
-
strokeWidth: 1.5,
|
|
624
|
-
stroke: "currentColor",
|
|
625
|
-
className: "h-6 w-6",
|
|
626
|
-
children: jsx("path", {
|
|
627
|
-
strokeLinecap: "round",
|
|
628
|
-
strokeLinejoin: "round",
|
|
629
|
-
d: "M15.75 6a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0ZM4.501 20.118a7.5 7.5 0 0 1 14.998 0A17.933 17.933 0 0 1 12 21.75c-2.676 0-5.216-.584-7.499-1.632Z"
|
|
630
|
-
})
|
|
631
|
-
})
|
|
632
|
-
}), jsx("h3", {
|
|
633
|
-
className: "text-xl font-semibold text-foreground",
|
|
634
|
-
children: "Personalize Your Experience"
|
|
635
|
-
})]
|
|
636
|
-
}), jsx("p", {
|
|
637
|
-
className: "mb-6 text-muted-foreground leading-relaxed",
|
|
638
|
-
children: "Adjust settings like language, content format, and tone to customize your results. Creating a profile helps us deliver more personalized experiences."
|
|
639
|
-
}), jsxs("a", {
|
|
640
|
-
href: "#",
|
|
641
|
-
className: "inline-flex items-center gap-2 text-sm font-medium text-primary/80 hover:text-primary transition-colors",
|
|
642
|
-
children: ["Learn more ", jsx("span", {
|
|
643
|
-
className: "transition-transform group-hover:translate-x-1",
|
|
644
|
-
children: "\u2192"
|
|
645
|
-
})]
|
|
646
|
-
})]
|
|
647
|
-
}), jsxs("div", {
|
|
648
|
-
className: "group rounded-xl border border-border bg-card p-8 shadow-sm transition-all hover:shadow-lg hover:-translate-y-1",
|
|
649
|
-
children: [jsxs("div", {
|
|
650
|
-
className: "mb-6 flex items-center gap-4",
|
|
651
|
-
children: [jsx("div", {
|
|
652
|
-
className: "flex h-12 w-12 items-center justify-center rounded-full bg-gradient-to-br from-rose-100 to-rose-200 text-rose-600",
|
|
653
|
-
children: jsx("svg", {
|
|
654
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
655
|
-
fill: "none",
|
|
656
|
-
viewBox: "0 0 24 24",
|
|
657
|
-
strokeWidth: 1.5,
|
|
658
|
-
stroke: "currentColor",
|
|
659
|
-
className: "h-6 w-6",
|
|
660
|
-
children: jsx("path", {
|
|
661
|
-
strokeLinecap: "round",
|
|
662
|
-
strokeLinejoin: "round",
|
|
663
|
-
d: "M16.5 10.5V6.75a4.5 4.5 0 1 0-9 0v3.75m-.75 11.25h10.5a2.25 2.25 0 0 0 2.25-2.25v-6.75a2.25 2.25 0 0 0-2.25-2.25H6.75a2.25 2.25 0 0 0-2.25 2.25v6.75a2.25 2.25 0 0 0 2.25 2.25Z"
|
|
664
|
-
})
|
|
665
|
-
})
|
|
666
|
-
}), jsx("h3", {
|
|
667
|
-
className: "text-xl font-semibold text-foreground",
|
|
668
|
-
children: "Privacy & Collaboration"
|
|
669
|
-
})]
|
|
670
|
-
}), jsx("p", {
|
|
671
|
-
className: "mb-6 text-muted-foreground leading-relaxed",
|
|
672
|
-
children: "By default, your Threads and Spaces are private. You can decide to share with others using our collaboration features and sharing settings."
|
|
673
|
-
}), jsxs("a", {
|
|
674
|
-
href: "#",
|
|
675
|
-
className: "inline-flex items-center gap-2 text-sm font-medium text-primary/80 hover:text-primary transition-colors",
|
|
676
|
-
children: ["Learn more ", jsx("span", {
|
|
677
|
-
className: "transition-transform group-hover:translate-x-1",
|
|
678
|
-
children: "\u2192"
|
|
679
|
-
})]
|
|
680
|
-
})]
|
|
681
|
-
})]
|
|
470
|
+
children: proTips.map((tip, index) => {
|
|
471
|
+
const IconComponent = tip.icon;
|
|
472
|
+
return jsx(ProTipCard, {
|
|
473
|
+
icon: jsx("div", {
|
|
474
|
+
className: `flex h-12 w-12 items-center justify-center rounded-full bg-gradient-to-br ${tip.iconColor}`,
|
|
475
|
+
children: jsx(IconComponent, {})
|
|
476
|
+
}),
|
|
477
|
+
title: tip.title,
|
|
478
|
+
description: tip.description,
|
|
479
|
+
linkText: tip.linkText,
|
|
480
|
+
linkHref: tip.linkHref
|
|
481
|
+
}, index);
|
|
482
|
+
})
|
|
682
483
|
})]
|
|
683
484
|
})
|
|
684
485
|
}), jsx("section", {
|
|
@@ -694,81 +495,18 @@ import {jsxs,jsx}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
694
495
|
className: "mx-auto max-w-3xl text-xl text-muted-foreground",
|
|
695
496
|
children: "Continue your journey with these helpful resources and community connections"
|
|
696
497
|
})]
|
|
697
|
-
}),
|
|
498
|
+
}), jsx("div", {
|
|
698
499
|
className: "space-y-6",
|
|
699
|
-
children:
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
strokeWidth: 1.5,
|
|
710
|
-
stroke: "currentColor",
|
|
711
|
-
className: "h-6 w-6",
|
|
712
|
-
children: jsx("path", {
|
|
713
|
-
strokeLinecap: "round",
|
|
714
|
-
strokeLinejoin: "round",
|
|
715
|
-
d: "M9.879 7.519c1.171-1.025 3.071-1.025 4.242 0 1.172 1.025 1.172 2.687 0 3.712-.203.179-.43.326-.67.442-.745.361-1.45.999-1.45 1.827v.75M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Zm-9 5.25h.008v.008H12v-.008Z"
|
|
716
|
-
})
|
|
717
|
-
})
|
|
718
|
-
}), jsxs("div", {
|
|
719
|
-
children: [jsx("h3", {
|
|
720
|
-
className: "text-xl font-semibold text-foreground group-hover:text-primary transition-colors",
|
|
721
|
-
children: "Frequently Asked Questions"
|
|
722
|
-
}), jsx("p", {
|
|
723
|
-
className: "mt-1 text-sm text-muted-foreground",
|
|
724
|
-
children: "Get answers to common questions and troubleshooting tips"
|
|
725
|
-
})]
|
|
726
|
-
})]
|
|
727
|
-
}), jsxs("a", {
|
|
728
|
-
href: "#",
|
|
729
|
-
className: "inline-flex items-center gap-2 text-sm font-medium text-primary/80 hover:text-primary transition-colors",
|
|
730
|
-
children: ["View more ", jsx("span", {
|
|
731
|
-
className: "transition-transform group-hover:translate-x-1",
|
|
732
|
-
children: "\u2192"
|
|
733
|
-
})]
|
|
734
|
-
})]
|
|
735
|
-
}), jsxs("div", {
|
|
736
|
-
className: "group flex cursor-pointer items-center justify-between rounded-xl bg-card p-8 shadow-sm transition-all hover:bg-primary/5 hover:shadow-lg hover:-translate-y-1",
|
|
737
|
-
children: [jsxs("div", {
|
|
738
|
-
className: "flex items-center gap-6",
|
|
739
|
-
children: [jsx("div", {
|
|
740
|
-
className: "flex h-12 w-12 shrink-0 items-center justify-center rounded-full bg-gradient-to-br from-primary/10 to-primary/20 text-primary group-hover:from-primary/20 group-hover:to-primary/30 transition-all",
|
|
741
|
-
children: jsx("svg", {
|
|
742
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
743
|
-
fill: "none",
|
|
744
|
-
viewBox: "0 0 24 24",
|
|
745
|
-
strokeWidth: 1.5,
|
|
746
|
-
stroke: "currentColor",
|
|
747
|
-
className: "h-6 w-6",
|
|
748
|
-
children: jsx("path", {
|
|
749
|
-
strokeLinecap: "round",
|
|
750
|
-
strokeLinejoin: "round",
|
|
751
|
-
d: "M18 18.72a9.094 9.094 0 0 0 3.741-.479 3 3 0 0 0-4.682-2.72m.94 3.198.001.031c0 .225-.012.447-.037.666A11.944 11.944 0 0 1 12 21c-2.17 0-4.207-.576-5.963-1.584A6.062 6.062 0 0 1 6 18.719m12 0a5.971 5.971 0 0 0-.941-3.197m0 0A5.995 5.995 0 0 0 12 12.75a5.995 5.995 0 0 0-5.058 2.772m0 0a3 3 0 0 0-4.681 2.72 8.986 8.986 0 0 0 3.74.477m.94-3.197a5.971 5.971 0 0 0-.94 3.197M15 6.75a3 3 0 1 1-6 0 3 3 0 0 1 6 0Zm6 3a2.25 2.25 0 1 1-4.5 0 2.25 2.25 0 0 1 4.5 0Zm-13.5 0a2.25 2.25 0 1 1-4.5 0 2.25 2.25 0 0 1 4.5 0Z"
|
|
752
|
-
})
|
|
753
|
-
})
|
|
754
|
-
}), jsxs("div", {
|
|
755
|
-
children: [jsx("h3", {
|
|
756
|
-
className: "text-xl font-semibold text-foreground group-hover:text-primary transition-colors",
|
|
757
|
-
children: "Join Our Community"
|
|
758
|
-
}), jsx("p", {
|
|
759
|
-
className: "mt-1 text-sm text-muted-foreground",
|
|
760
|
-
children: "Connect with other users and share your experiences"
|
|
761
|
-
})]
|
|
762
|
-
})]
|
|
763
|
-
}), jsxs("a", {
|
|
764
|
-
href: "#",
|
|
765
|
-
className: "inline-flex items-center gap-2 text-sm font-medium text-primary/80 hover:text-primary transition-colors",
|
|
766
|
-
children: ["Explore ", jsx("span", {
|
|
767
|
-
className: "transition-transform group-hover:translate-x-1",
|
|
768
|
-
children: "\u2192"
|
|
769
|
-
})]
|
|
770
|
-
})]
|
|
771
|
-
})]
|
|
500
|
+
children: resources.map((resource, index) => {
|
|
501
|
+
const IconComponent = resource.icon;
|
|
502
|
+
return jsx(ResourceCard, {
|
|
503
|
+
icon: jsx(IconComponent, {}),
|
|
504
|
+
title: resource.title,
|
|
505
|
+
description: resource.description,
|
|
506
|
+
linkText: resource.linkText,
|
|
507
|
+
linkHref: resource.linkHref
|
|
508
|
+
}, index);
|
|
509
|
+
})
|
|
772
510
|
})]
|
|
773
511
|
})
|
|
774
512
|
})]
|