@adminide-stack/clock-tik-browser 12.0.17-alpha.0 → 12.0.17-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/components/HelpCenterFooter.js +2 -2
- package/lib/components/HelpCenterHeader.js +1 -1
- package/lib/components/Logo.d.ts.map +1 -1
- package/lib/components/Logo.js +56 -91
- package/lib/components/Logo.js.map +1 -1
- package/lib/compute.js +6 -6
- package/lib/compute.js.map +1 -1
- package/lib/pages/GetStarted/index.d.ts.map +1 -1
- package/lib/pages/GetStarted/index.js +14 -14
- package/lib/pages/GetStarted/index.js.map +1 -1
- package/lib/pages/HelpCenter/mockData.d.ts.map +1 -1
- package/lib/pages/HelpCenter/mockData.js +13 -9
- package/lib/pages/HelpCenter/mockData.js.map +1 -1
- package/lib/pages/LandingPage/index.js +6 -6
- package/lib/pages/LandingPage/index.js.map +1 -1
- package/lib/utils/markdownLoader.d.ts +2 -0
- package/lib/utils/markdownLoader.d.ts.map +1 -1
- package/lib/utils/markdownLoader.js +1523 -1097
- package/lib/utils/markdownLoader.js.map +1 -1
- package/package.json +2 -2
|
@@ -7,7 +7,7 @@ import {jsx,jsxs}from'react/jsx-runtime';const HelpCenterFooter = () => {
|
|
|
7
7
|
className: "mb-10",
|
|
8
8
|
children: [jsx("h2", {
|
|
9
9
|
className: "text-center text-2xl font-bold text-foreground",
|
|
10
|
-
children: "
|
|
10
|
+
children: "Clockbook Help Center"
|
|
11
11
|
}), jsx("p", {
|
|
12
12
|
className: "text-center text-sm text-muted-foreground",
|
|
13
13
|
children: "Where Knowledge Begins"
|
|
@@ -91,7 +91,7 @@ import {jsx,jsxs}from'react/jsx-runtime';const HelpCenterFooter = () => {
|
|
|
91
91
|
})]
|
|
92
92
|
}), jsxs("div", {
|
|
93
93
|
className: "text-center text-xs text-muted-foreground",
|
|
94
|
-
children: ["\u00A9 Copyright ", new Date().getFullYear(), "
|
|
94
|
+
children: ["\u00A9 Copyright ", new Date().getFullYear(), " Clockbook \u2022 All rights reserved"]
|
|
95
95
|
})]
|
|
96
96
|
})
|
|
97
97
|
});
|
|
@@ -28,7 +28,7 @@ import {jsxs,jsx}from'react/jsx-runtime';import {useState}from'react';const Help
|
|
|
28
28
|
children: "How can we help?"
|
|
29
29
|
}), jsx("p", {
|
|
30
30
|
className: "mb-12 text-xl font-normal text-white/80 lg:text-2xl",
|
|
31
|
-
children: "Get answers to all things
|
|
31
|
+
children: "Get answers to all things Clockbook."
|
|
32
32
|
}), jsx("form", {
|
|
33
33
|
onSubmit: handleSearch,
|
|
34
34
|
className: "relative w-full max-w-2xl mx-auto",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Logo.d.ts","sourceRoot":"","sources":["../../src/components/Logo.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,UAAU,EAAE,MAAM,6DAA6D,CAAC;AAEzF,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,
|
|
1
|
+
{"version":3,"file":"Logo.d.ts","sourceRoot":"","sources":["../../src/components/Logo.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,UAAU,EAAE,MAAM,6DAA6D,CAAC;AAEzF,eAAO,MAAM,IAAI,EAAE,KAAK,CAAC,EAAE,CAAC,UAAU,CAkErC,CAAC"}
|
package/lib/components/Logo.js
CHANGED
|
@@ -7,98 +7,63 @@ import {jsxs,jsx}from'react/jsx-runtime';const Logo = props => {
|
|
|
7
7
|
} = props;
|
|
8
8
|
const fill = !scrolled ? '#fff' : settings?.navTheme === 'dark' ? '#fff' : 'black';
|
|
9
9
|
return jsxs("svg", {
|
|
10
|
-
|
|
10
|
+
width: "348",
|
|
11
|
+
height: "100",
|
|
12
|
+
viewBox: "0 0 348 200",
|
|
13
|
+
fill: "none",
|
|
11
14
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
})
|
|
64
|
-
className: "st4",
|
|
65
|
-
points: "154.26,102.1 99.88,102.1 109.05,86.53 145.09,86.53 \t\t"
|
|
66
|
-
}), jsx("path", {
|
|
67
|
-
className: "st5",
|
|
68
|
-
d: "M157.9,108.3H96.23l-1.49,2.54l32.33,44.33l32.33-44.33L157.9,108.3z M127.07,130.9\n c-3.25,0-5.88-2.64-5.88-5.88c0-3.25,2.64-5.88,5.88-5.88c3.26,0,5.89,2.64,5.89,5.88C132.96,128.26,130.32,130.9,127.07,130.9z"
|
|
69
|
-
}), jsx("polygon", {
|
|
70
|
-
className: "st6",
|
|
71
|
-
points: "66.87,158.19 78.09,139.13 91.76,158.19 \t\t"
|
|
72
|
-
}), jsx("polygon", {
|
|
73
|
-
className: "st6",
|
|
74
|
-
points: "121.6,158.19 99.4,158.19 81.53,133.29 91.31,116.66 \t\t"
|
|
75
|
-
}), jsx("polygon", {
|
|
76
|
-
className: "st7",
|
|
77
|
-
points: "172.61,133.29 154.74,158.19 132.54,158.19 162.83,116.66 \t\t"
|
|
78
|
-
}), jsx("polygon", {
|
|
79
|
-
className: "st7",
|
|
80
|
-
points: "187.27,158.19 162.37,158.19 176.05,139.13 \t\t"
|
|
81
|
-
}), jsx("path", {
|
|
82
|
-
className: "st3",
|
|
83
|
-
d: "M284.76,156.66c-4.35,0-8.3-0.87-11.83-2.62c-3.53-1.75-6.33-4.44-8.4-8.08c-2.07-3.64-3.1-8.28-3.1-13.92\n c0-5.28,1.07-9.85,3.21-13.7c2.14-3.85,4.96-6.83,8.46-8.94c3.5-2.1,7.21-3.16,11.13-3.16c4.64,0,8.15,0.77,10.54,2.3\n c2.39,1.54,4.37,3.23,5.94,5.08l-0.64,1.82l1.39-6.85h13.92v46.78h-14.99V145.2l1.18,3.21c-0.14,0-0.57,0.41-1.28,1.23\n c-0.71,0.82-1.77,1.78-3.16,2.89c-1.39,1.11-3.1,2.07-5.14,2.89C289.95,156.25,287.54,156.66,284.76,156.66z M289.04,144.46\n c1.78,0,3.39-0.27,4.82-0.8c1.43-0.54,2.68-1.32,3.75-2.36c1.07-1.03,2-2.34,2.78-3.91v-11.45c-0.57-1.57-1.43-2.91-2.57-4.01\n c-1.14-1.11-2.5-1.96-4.07-2.57c-1.57-0.61-3.32-0.91-5.24-0.91c-2.14,0-4.12,0.55-5.94,1.66c-1.82,1.11-3.26,2.62-4.34,4.55\n c-1.07,1.93-1.61,4.14-1.61,6.64c0,2.5,0.57,4.75,1.71,6.74c1.14,2,2.66,3.57,4.55,4.71\n C284.77,143.89,286.82,144.46,289.04,144.46z"
|
|
84
|
-
}), jsx("path", {
|
|
85
|
-
className: "st3",
|
|
86
|
-
d: "M336.26,108.6l1.18,8.35l-0.21-0.75c1.64-2.93,3.96-5.3,6.96-7.12c3-1.82,6.67-2.73,11.03-2.73\n c4.42,0,8.12,1.3,11.08,3.91c2.96,2.61,4.48,5.98,4.55,10.12v35h-14.99v-29.44c-0.07-2.07-0.63-3.73-1.66-4.98\n c-1.04-1.25-2.77-1.87-5.19-1.87c-2.28,0-4.28,0.75-5.99,2.25c-1.71,1.5-3.03,3.53-3.96,6.1c-0.93,2.57-1.39,5.53-1.39,8.88v19.05\n h-14.99V108.6H336.26z"
|
|
87
|
-
}), jsx("path", {
|
|
88
|
-
className: "st3",
|
|
89
|
-
d: "M384.78,88.05h14.99v20.34h11.35v11.67h-11.35v35.32h-14.99v-35.32h-7.28v-11.67h7.28V88.05z"
|
|
90
|
-
}), jsx("path", {
|
|
91
|
-
className: "st3",
|
|
92
|
-
d: "M431.88,108.6l1.39,12.84l-0.32-1.93c1.36-2.78,3.21-5.15,5.57-7.12c2.35-1.96,4.69-3.48,7.01-4.55\n c2.32-1.07,4.08-1.61,5.3-1.61l-0.75,14.99c-3.5-0.43-6.49,0.14-8.99,1.71c-2.5,1.57-4.43,3.64-5.78,6.21\n c-1.36,2.57-2.03,5.21-2.03,7.92v18.3h-14.88V108.6H431.88z"
|
|
93
|
-
}), jsx("path", {
|
|
94
|
-
className: "st3",
|
|
95
|
-
d: "M477.33,156.66c-4.35,0-8.3-0.87-11.83-2.62c-3.53-1.75-6.33-4.44-8.4-8.08c-2.07-3.64-3.1-8.28-3.1-13.92\n c0-5.28,1.07-9.85,3.21-13.7c2.14-3.85,4.96-6.83,8.46-8.94c3.5-2.1,7.21-3.16,11.13-3.16c4.64,0,8.15,0.77,10.54,2.3\n c2.39,1.54,4.37,3.23,5.94,5.08l-0.64,1.82l1.39-6.85h13.92v46.78h-14.99V145.2l1.18,3.21c-0.14,0-0.57,0.41-1.28,1.23\n c-0.71,0.82-1.77,1.78-3.16,2.89c-1.39,1.11-3.1,2.07-5.14,2.89C482.52,156.25,480.11,156.66,477.33,156.66z M481.61,144.46\n c1.78,0,3.39-0.27,4.82-0.8c1.43-0.54,2.68-1.32,3.75-2.36c1.07-1.03,2-2.34,2.78-3.91v-11.45c-0.57-1.57-1.43-2.91-2.57-4.01\n c-1.14-1.11-2.5-1.96-4.07-2.57c-1.57-0.61-3.32-0.91-5.24-0.91c-2.14,0-4.12,0.55-5.94,1.66c-1.82,1.11-3.26,2.62-4.34,4.55\n c-1.07,1.93-1.61,4.14-1.61,6.64c0,2.5,0.57,4.75,1.71,6.74c1.14,2,2.66,3.57,4.55,4.71\n C477.34,143.89,479.39,144.46,481.61,144.46z"
|
|
96
|
-
}), jsx("g", {
|
|
97
|
-
children: jsx("path", {
|
|
98
|
-
className: "st3",
|
|
99
|
-
d: "M230.13,155.62l-22.91-46.99h16.8l17.66,39.5L230.13,155.62z M217.61,177.88l31.15-69.25h13.49l-30.18,69.25\n H217.61z"
|
|
100
|
-
})
|
|
101
|
-
})]
|
|
15
|
+
children: [jsxs("g", {
|
|
16
|
+
"clip-path": "url(#clip0)",
|
|
17
|
+
children: [jsx("path", {
|
|
18
|
+
d: "M132.04 41.3285C138.095 41.3285 142.16 44.4849 143.475 49.9306H136.858C136.546 48.9003 135.896 48.0057 135.014 47.3918C134.132 46.778 133.068 46.4809 131.996 46.5487C128.58 46.5487 126.296 49.1502 126.296 53.8849C126.296 58.6195 128.58 61.1776 131.996 61.1776C134.539 61.1776 136.114 60.033 136.858 57.8391H143.475C142.16 63.042 138.086 66.4412 132.04 66.4412C125.033 66.4412 120.034 61.5245 120.034 53.8849C120.034 46.2452 125.033 41.3285 132.04 41.3285Z",
|
|
19
|
+
fill: fill
|
|
20
|
+
}), jsx("path", {
|
|
21
|
+
d: "M147.981 33.5501H154.114V66.051H147.981V33.5501Z",
|
|
22
|
+
fill: fill
|
|
23
|
+
}), jsx("path", {
|
|
24
|
+
d: "M170.938 66.4412C163.932 66.4412 158.629 61.5245 158.629 53.8849C158.629 46.2452 164.105 41.3285 171.111 41.3285C178.117 41.3285 183.601 46.2019 183.601 53.8849C183.601 61.5678 177.988 66.4412 170.938 66.4412ZM170.938 61.0909C174.182 61.0909 177.287 58.7149 177.287 53.8849C177.287 49.0548 174.268 46.6875 171.025 46.6875C167.781 46.6875 164.849 49.0115 164.849 53.8849C164.849 58.7583 167.651 61.0909 170.938 61.0909Z",
|
|
25
|
+
fill: fill
|
|
26
|
+
}), jsx("path", {
|
|
27
|
+
d: "M198.54 41.3285C204.595 41.3285 208.66 44.4849 209.966 49.9306H203.358C203.045 48.9011 202.395 48.0074 201.513 47.3938C200.631 46.7802 199.568 46.4825 198.496 46.5487C195.08 46.5487 192.796 49.1502 192.796 53.8849C192.796 58.6195 195.08 61.1776 198.496 61.1776C201.031 61.1776 202.614 60.033 203.358 57.8391H209.966C208.66 63.042 204.586 66.4412 198.54 66.4412C191.525 66.4412 186.534 61.5245 186.534 53.8849C186.534 46.2452 191.525 41.3285 198.54 41.3285Z",
|
|
28
|
+
fill: fill
|
|
29
|
+
}), jsx("path", {
|
|
30
|
+
d: "M214.516 33.5501H220.649V52.0291L228.797 41.71H236.772L226.046 53.9282L236.824 66.0683H228.849L220.614 55.6625V66.0683H214.516V33.5501Z",
|
|
31
|
+
fill: fill
|
|
32
|
+
}), jsx("path", {
|
|
33
|
+
d: "M254.218 41.3285C260.438 41.3285 265.299 46.2019 265.299 53.7981C265.299 61.3944 260.438 66.4412 254.218 66.4412C252.67 66.5015 251.129 66.1814 249.732 65.5089C248.334 64.8364 247.122 63.8317 246.2 62.5824V66.051H240.067V33.5501H246.2V45.2827C247.107 44.0107 248.314 42.9838 249.713 42.2938C251.112 41.6038 252.66 41.2721 254.218 41.3285ZM252.575 46.7308C249.288 46.7308 246.183 49.2716 246.183 53.8848C246.183 58.4981 249.288 61.0475 252.575 61.0475C255.862 61.0475 259.019 58.4461 259.019 53.7981C259.019 49.1502 255.923 46.7308 252.575 46.7308Z",
|
|
34
|
+
fill: fill
|
|
35
|
+
}), jsx("path", {
|
|
36
|
+
d: "M280.54 66.4412C273.534 66.4412 268.231 61.5245 268.231 53.8849C268.231 46.2452 273.707 41.3285 280.722 41.3285C287.737 41.3285 293.229 46.2019 293.229 53.8849C293.229 61.5678 287.598 66.4412 280.54 66.4412ZM280.54 61.0909C283.784 61.0909 286.898 58.7149 286.898 53.8849C286.898 49.0548 283.87 46.6875 280.627 46.6875C277.383 46.6875 274.451 49.0115 274.451 53.8849C274.451 58.7583 277.262 61.0909 280.54 61.0909Z",
|
|
37
|
+
fill: fill
|
|
38
|
+
}), jsx("path", {
|
|
39
|
+
d: "M308.488 66.4412C301.482 66.4412 296.179 61.5245 296.179 53.8849C296.179 46.2452 301.655 41.3285 308.67 41.3285C315.685 41.3285 321.151 46.2019 321.151 53.8849C321.151 61.5678 315.546 66.4412 308.488 66.4412ZM308.488 61.0909C311.732 61.0909 314.846 58.7149 314.846 53.8849C314.846 49.0548 311.818 46.6875 308.583 46.6875C305.348 46.6875 302.407 49.0115 302.407 53.8849C302.407 58.7583 305.21 61.0909 308.488 61.0909Z",
|
|
40
|
+
fill: fill
|
|
41
|
+
}), jsx("path", {
|
|
42
|
+
d: "M325.667 33.5501H331.799V52.0291L339.939 41.7187H347.905L337.231 53.9282L348 66.0683H340.034L331.799 55.6625V66.0683H325.667V33.5501Z",
|
|
43
|
+
fill: fill
|
|
44
|
+
}), jsx("path", {
|
|
45
|
+
d: "M43.7597 57.5789C35.9749 40.0711 40.6977 16.4239 52.2365 0.520325C36.6744 2.97967 22.5747 11.1363 12.6636 23.4131C1.08144 38.2935 -3.93546 61.3077 3.5207 78.2779C13.7361 67.3344 28.7696 59.3393 43.7597 57.5789Z",
|
|
46
|
+
fill: "#FF670C"
|
|
47
|
+
}), jsx("path", {
|
|
48
|
+
opacity: "0.8",
|
|
49
|
+
d: "M45.7146 56.4426C45.4551 56.7894 45.1783 57.1189 44.9102 57.4658C55.8262 56.4165 66.6645 58.7058 75.5219 65.6517C80.1183 69.2793 83.8652 73.8733 86.4985 79.1099C86.957 78.5463 87.4154 77.9913 87.8393 77.3756C102.648 57.4311 103.668 23.7683 83.3846 7.88203C74.8818 1.24832 64.4328 -0.867535 53.9319 0.303121C60.8172 18.2098 57.0891 41.146 45.7146 56.4426Z",
|
|
50
|
+
fill: "#FF670C"
|
|
51
|
+
}), jsx("path", {
|
|
52
|
+
opacity: "0.5",
|
|
53
|
+
d: "M50.169 67.4211C47.7127 64.7447 45.6716 61.7134 44.1141 58.4287C43.9757 58.1426 43.8546 57.8651 43.7248 57.5616C28.7347 59.2959 13.7013 67.3171 3.48584 78.2605C3.72804 78.8068 3.97888 79.3531 4.24702 79.8908C5.65613 82.7279 7.45235 85.3546 9.58397 87.6951C27.4286 107.189 65.9809 102.506 85.3305 80.4457C71.7417 80.888 58.715 76.769 50.169 67.4211Z",
|
|
54
|
+
fill: "#FF670C"
|
|
55
|
+
}), jsx("path", {
|
|
56
|
+
d: "M44.9102 57.4662L43.7598 57.5789C43.8895 57.8651 44.0106 58.1426 44.149 58.4461L44.9102 57.4662Z",
|
|
57
|
+
fill: "white"
|
|
58
|
+
})]
|
|
59
|
+
}), jsx("defs", {
|
|
60
|
+
children: jsx("clipPath", {
|
|
61
|
+
id: "clip0",
|
|
62
|
+
children: jsx("rect", {
|
|
63
|
+
width: "348",
|
|
64
|
+
height: "100",
|
|
65
|
+
fill: "white"
|
|
66
|
+
})
|
|
102
67
|
})
|
|
103
68
|
})]
|
|
104
69
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Logo.js","sources":["../../src/components/Logo.tsx"],"sourcesContent":[null],"names":[],"mappings":"yCAGa,MAAA,IAAI,GAAyB,KAAC,IAAS;QAC1C;IACN,QAAM;AAEN,IAAA,IAAA
|
|
1
|
+
{"version":3,"file":"Logo.js","sources":["../../src/components/Logo.tsx"],"sourcesContent":[null],"names":[],"mappings":"yCAGa,MAAA,IAAI,GAAyB,KAAC,IAAS;QAC1C;IACN,QAAM;AAEN,IAAA,IAAA;AA8DJ,IAAE,QAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/lib/compute.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IMenuPosition } from '@common-stack/core';
|
|
2
2
|
import { getFilteredMenus, getFilteredRoutes } from '@common-stack/client-react/lib/utils/filteredRoutes.js';
|
|
3
3
|
const ROOT_LAYOUT_PATH = '/';
|
|
4
|
-
const
|
|
4
|
+
const browserClockbookRoutes = {
|
|
5
5
|
LANDING: '/landing',
|
|
6
6
|
GET_STARTED: '/get-started',
|
|
7
7
|
HELP_CENTER: '/help-center',
|
|
@@ -9,7 +9,7 @@ const browserYantraRoutes = {
|
|
|
9
9
|
HELP_ARTICLE: '/help-center/:categoryId/:articleSlug'
|
|
10
10
|
};
|
|
11
11
|
const MainRoutes = [{
|
|
12
|
-
path: `${ROOT_LAYOUT_PATH}${
|
|
12
|
+
path: `${ROOT_LAYOUT_PATH}${browserClockbookRoutes.LANDING}`,
|
|
13
13
|
key: 'landing',
|
|
14
14
|
exact: true,
|
|
15
15
|
hideInMenu: true,
|
|
@@ -18,7 +18,7 @@ const MainRoutes = [{
|
|
|
18
18
|
componentPath: "@adminide-stack/clock-tik-browser/lib/pages/LandingPage/index.js",
|
|
19
19
|
hasComponent: true
|
|
20
20
|
}, {
|
|
21
|
-
path: `${ROOT_LAYOUT_PATH}${
|
|
21
|
+
path: `${ROOT_LAYOUT_PATH}${browserClockbookRoutes.GET_STARTED}`,
|
|
22
22
|
key: 'get-started',
|
|
23
23
|
exact: true,
|
|
24
24
|
hideInMenu: true,
|
|
@@ -26,7 +26,7 @@ const MainRoutes = [{
|
|
|
26
26
|
componentPath: "@adminide-stack/clock-tik-browser/lib/pages/GetStarted/index.js",
|
|
27
27
|
hasComponent: true
|
|
28
28
|
}, {
|
|
29
|
-
path: `${ROOT_LAYOUT_PATH}${
|
|
29
|
+
path: `${ROOT_LAYOUT_PATH}${browserClockbookRoutes.HELP_CENTER}`,
|
|
30
30
|
key: 'help-center',
|
|
31
31
|
exact: true,
|
|
32
32
|
hideInMenu: true,
|
|
@@ -34,7 +34,7 @@ const MainRoutes = [{
|
|
|
34
34
|
componentPath: "@adminide-stack/clock-tik-browser/lib/pages/HelpCenter/index.js",
|
|
35
35
|
hasComponent: true
|
|
36
36
|
}, {
|
|
37
|
-
path: `${ROOT_LAYOUT_PATH}${
|
|
37
|
+
path: `${ROOT_LAYOUT_PATH}${browserClockbookRoutes.HELP_CATEGORY}`,
|
|
38
38
|
key: 'help-category',
|
|
39
39
|
exact: true,
|
|
40
40
|
hideInMenu: true,
|
|
@@ -42,7 +42,7 @@ const MainRoutes = [{
|
|
|
42
42
|
componentPath: "@adminide-stack/clock-tik-browser/lib/pages/CategoryCollection/index.js",
|
|
43
43
|
hasComponent: true
|
|
44
44
|
}, {
|
|
45
|
-
path: `${ROOT_LAYOUT_PATH}${
|
|
45
|
+
path: `${ROOT_LAYOUT_PATH}${browserClockbookRoutes.HELP_ARTICLE}`,
|
|
46
46
|
key: 'help-article',
|
|
47
47
|
exact: true,
|
|
48
48
|
hideInMenu: true,
|
package/lib/compute.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"compute.js","sources":["../src/compute.ts"],"sourcesContent":[null],"names":[],"mappings":"uJAGA,MAAM,gBAAgB,GAAG,GAAG;AAC5B,MAAM,
|
|
1
|
+
{"version":3,"file":"compute.js","sources":["../src/compute.ts"],"sourcesContent":[null],"names":[],"mappings":"uJAGA,MAAM,gBAAgB,GAAG,GAAG;AAC5B,MAAM,sBAAsB,GAAG;AAC3B,EAAA,OAAA,EAAO,UAAY;AACnB,EAAA,WAAA,EAAW,cAAgB;AAC3B,EAAA,WAAA,EAAW,cAAgB;AAC3B,EAAA,aAAA,EAAa,0BAA4B;AACzC,EAAA,YAAA,EAAY;CACf;AAEY,MAAA,UAAU,GAAQ,CAAA;AAC3B,EAAA,IAAA,EAAA,CAAA,EAAA,gBAAA,CAAA,EAAA,sBAAA,CAAA,OAAA,CAAA,CAAA;AACI,EAAA,GAAA,EAAA,SAAS;AACT,EAAA,KAAA,EAAA,IAAK;AACL,EAAA,UAAA,MAAW;AACX,EAAA,SAAA,EAAA,aAAgB,8BAAA,CAAA;AAChB,EAAA,KAAA,EAAA,IAAA;AACA,EAAA,QAAA,EAAA,aAAW,CAAA;;AAEd,EAAA,IAAA,EAAA,CAAA,EAAA,gBAAA,CAAA,EAAA,sBAAA,CAAA,WAAA,CAAA,CAAA;AACD,EAAA,GAAA,EAAA,aAAA;AACI,EAAA,KAAA,EAAA;AACA,EAAA,YAAkB,IAAA;AAClB,EAAA,SAAA,EAAK,MAAM,OAAA,6BAAA,CAAA;AACX,EAAA,QAAA,EAAA,aAAgB,CAAA;AAChB,CAAA,EAAA;QACA,CAAQ,EAAA,gBAAe,CAAA,EAAA,sBAAO,CAAA,WAAA,CAAA,CAAA;AACjC,EAAA,GAAA,EAAA,aAAA;AACD,EAAA,KAAA,EAAA,IAAA;AACI,EAAA,UAAI,EAAE,IAAG;AACT,EAAA,SAAG,EAAE,MAAa,OAAA,6BAAA,CAAA;AAClB,EAAA,QAAA,EAAA,aAAW,CAAA;AACX,CAAA,EAAA;AACA,EAAA,IAAA,EAAA,CAAA,EAAA,gBAAuB,CAAA,EAAA,sBAAqB,CAAC,aAAA,CAAA,CAAA;sBACtB;AAC1B,EAAA,KAAA,EAAA,IAAA;AACD,EAAA,UAAA,EAAA,IAAA;AACI,EAAA,SAAA,QAAS,OAAA,qCAAyC,CAAA;AAClD,EAAA,QAAA,eAAoB,CAAA;AACpB,CAAA,EAAA;AACA,EAAA,IAAA,EAAA,CAAA,EAAA,gBAAgB,CAAA,EAAA,sBAAA,CAAA,YAAA,CAAA,CAAA;AAChB,EAAA,GAAA,EAAA,cAAc;SACN,IAAA;AACX,EAAA,UAAA,EAAA,IAAA;AACD,EAAA,SAAA,EAAA,MAAA,OAAA,8BAAA,CAAA;AACI,EAAA,QAAA,EAAI,aAAK,CAAA;AACT,CAAA;AACA;AACA,MAAA,WAAA,GAAY,GAAI;AAChB;AACuB,gBAAO,CAAA,UAAA,EAAA,WAAA;AACjC;AACH,MAAA,cAAA,GAAA,iBAAA,CAAA,UAAA,EAAA,WAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/pages/GetStarted/index.tsx"],"names":[],"mappings":"AAGA,QAAA,MAAM,cAAc,+
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/pages/GetStarted/index.tsx"],"names":[],"mappings":"AAGA,QAAA,MAAM,cAAc,+CAuuBnB,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -14,7 +14,7 @@ import {jsxs,jsx}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
14
14
|
children: "Getting Started"
|
|
15
15
|
}), jsx("p", {
|
|
16
16
|
className: "mb-8 text-xl font-normal text-primary-foreground/90",
|
|
17
|
-
children: "Everything you need to know to unlock the power of
|
|
17
|
+
children: "Everything you need to know to unlock the power of Clockbook and transform how you search, learn, and discover."
|
|
18
18
|
}), jsxs("div", {
|
|
19
19
|
className: "flex flex-wrap gap-4",
|
|
20
20
|
children: [jsx(Button, {
|
|
@@ -66,16 +66,16 @@ import {jsxs,jsx}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
66
66
|
className: "mb-16 text-center",
|
|
67
67
|
children: [jsx("h2", {
|
|
68
68
|
className: "mb-6 text-4xl font-bold tracking-tight text-foreground",
|
|
69
|
-
children: "What is
|
|
69
|
+
children: "What is Clockbook?"
|
|
70
70
|
}), jsx("p", {
|
|
71
71
|
className: "mx-auto max-w-4xl text-xl text-muted-foreground leading-relaxed",
|
|
72
|
-
children: "
|
|
72
|
+
children: "Clockbook is a powerful platform that combines advanced AI technologies and human insights. It's not just about answering questions, it's about empowering you to do more\u2014whether you're looking to solve complex problems, explore new topics, or learn get in-the-moment insights."
|
|
73
73
|
})]
|
|
74
74
|
}), jsx("div", {
|
|
75
75
|
className: "mb-12 text-center",
|
|
76
76
|
children: jsx("h3", {
|
|
77
77
|
className: "mb-8 text-2xl font-semibold text-foreground",
|
|
78
|
-
children: "See
|
|
78
|
+
children: "See Clockbook in Action"
|
|
79
79
|
})
|
|
80
80
|
}), jsxs("div", {
|
|
81
81
|
className: "grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3",
|
|
@@ -103,7 +103,7 @@ import {jsxs,jsx}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
103
103
|
children: "\"I need a quick healthy recipe\""
|
|
104
104
|
}), jsx("p", {
|
|
105
105
|
className: "mb-6 text-sm leading-relaxed text-muted-foreground",
|
|
106
|
-
children: "
|
|
106
|
+
children: "Clockbook can find and provide you with recipes that are quick to make, use healthy ingredients, and suit your taste preferences."
|
|
107
107
|
}), jsx(Button, {
|
|
108
108
|
variant: "link",
|
|
109
109
|
className: "p-0 text-sm text-primary hover:text-primary/80 self-start",
|
|
@@ -140,7 +140,7 @@ import {jsxs,jsx}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
140
140
|
children: "\"Shopping advice for a new pair of running headphones\""
|
|
141
141
|
}), jsx("p", {
|
|
142
142
|
className: "mb-6 text-sm leading-relaxed text-muted-foreground",
|
|
143
|
-
children: "
|
|
143
|
+
children: "Clockbook's curated insights will get you specific, informed recommendations with data from reviews, forums, and reliable sources."
|
|
144
144
|
}), jsx(Button, {
|
|
145
145
|
variant: "link",
|
|
146
146
|
className: "p-0 text-sm text-primary hover:text-primary/80 self-start",
|
|
@@ -177,7 +177,7 @@ import {jsxs,jsx}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
177
177
|
children: "\"Want to learn Python, but not sure where to begin?\""
|
|
178
178
|
}), jsx("p", {
|
|
179
179
|
className: "mb-6 text-sm leading-relaxed text-muted-foreground",
|
|
180
|
-
children: "
|
|
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
181
|
}), jsx(Button, {
|
|
182
182
|
variant: "link",
|
|
183
183
|
className: "p-0 text-sm text-primary hover:text-primary/80 self-start",
|
|
@@ -201,10 +201,10 @@ import {jsxs,jsx}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
201
201
|
className: "mb-16 text-center",
|
|
202
202
|
children: [jsx("h2", {
|
|
203
203
|
className: "mb-6 text-4xl font-bold tracking-tight text-foreground",
|
|
204
|
-
children: "What should I use
|
|
204
|
+
children: "What should I use Clockbook for?"
|
|
205
205
|
}), jsx("p", {
|
|
206
206
|
className: "mx-auto max-w-3xl text-xl text-muted-foreground",
|
|
207
|
-
children: "Discover the powerful ways
|
|
207
|
+
children: "Discover the powerful ways Clockbook can transform your workflow and enhance your productivity"
|
|
208
208
|
})]
|
|
209
209
|
}), jsxs("div", {
|
|
210
210
|
className: "grid gap-12 md:grid-cols-2",
|
|
@@ -233,7 +233,7 @@ import {jsxs,jsx}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
233
233
|
})]
|
|
234
234
|
}), jsx("p", {
|
|
235
235
|
className: "mb-6 text-muted-foreground leading-relaxed",
|
|
236
|
-
children: "When faced with tough questions,
|
|
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
237
|
}), jsxs("ul", {
|
|
238
238
|
className: "space-y-2 text-sm text-muted-foreground",
|
|
239
239
|
children: [jsxs("li", {
|
|
@@ -273,7 +273,7 @@ import {jsxs,jsx}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
273
273
|
})]
|
|
274
274
|
}), jsx("p", {
|
|
275
275
|
className: "mb-6 text-muted-foreground leading-relaxed",
|
|
276
|
-
children: "
|
|
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
277
|
}), jsxs("a", {
|
|
278
278
|
href: "#",
|
|
279
279
|
className: "inline-flex items-center gap-2 text-sm font-medium text-primary/80 hover:text-primary transition-colors",
|
|
@@ -310,7 +310,7 @@ import {jsxs,jsx}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
310
310
|
})]
|
|
311
311
|
}), jsx("p", {
|
|
312
312
|
className: "mb-6 text-muted-foreground leading-relaxed",
|
|
313
|
-
children: "Create your Threads in
|
|
313
|
+
children: "Create your Threads in Clockbook to collect related topics, build collections and easily access content whenever you need it."
|
|
314
314
|
}), jsxs("ul", {
|
|
315
315
|
className: "space-y-2 text-sm text-muted-foreground",
|
|
316
316
|
children: [jsxs("li", {
|
|
@@ -350,7 +350,7 @@ import {jsxs,jsx}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
350
350
|
})]
|
|
351
351
|
}), jsx("p", {
|
|
352
352
|
className: "mb-6 text-muted-foreground leading-relaxed",
|
|
353
|
-
children: "Ask questions about your files like PDFs and CSVs.
|
|
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
354
|
}), jsxs("ul", {
|
|
355
355
|
className: "space-y-2 text-sm text-muted-foreground",
|
|
356
356
|
children: [jsxs("li", {
|
|
@@ -572,7 +572,7 @@ import {jsxs,jsx}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
572
572
|
children: "Pro Tips for Success"
|
|
573
573
|
}), jsx("p", {
|
|
574
574
|
className: "mx-auto max-w-3xl text-xl text-muted-foreground",
|
|
575
|
-
children: "Here are three essential tips that will help you maximize your experience with
|
|
575
|
+
children: "Here are three essential tips that will help you maximize your experience with Clockbook"
|
|
576
576
|
})]
|
|
577
577
|
}), jsxs("div", {
|
|
578
578
|
className: "grid gap-8 md:grid-cols-2 lg:grid-cols-3",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../src/pages/GetStarted/index.tsx"],"sourcesContent":[null],"names":["_jsxs","_jsx"],"mappings":"0GAGM,MAAA,cAAc,GAAG,MAAK;SACjBA,IACE,CAAA,KAAA,EAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/pages/GetStarted/index.tsx"],"sourcesContent":[null],"names":["_jsxs","_jsx"],"mappings":"0GAGM,MAAA,cAAc,GAAG,MAAK;SACjBA,IACE,CAAA,KAAA,EAAA;AAquBb,IAAE,SAAA,EAAA,4BAAA;AAEF,IAAA,QAAA,EAAA,CAAeC,aAAc,EAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mockData.d.ts","sourceRoot":"","sources":["../../../src/pages/HelpCenter/mockData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAE7D,eAAO,MAAM,kBAAkB,EAAE,YAAY,
|
|
1
|
+
{"version":3,"file":"mockData.d.ts","sourceRoot":"","sources":["../../../src/pages/HelpCenter/mockData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAE7D,eAAO,MAAM,kBAAkB,EAAE,YAAY,EA8L5C,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;GAqB/B,CAAC"}
|
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
const popularArticlesMock = [{
|
|
2
|
-
id: '
|
|
3
|
-
title: '
|
|
4
|
-
link: '/help-center/
|
|
2
|
+
id: 'workspaces',
|
|
3
|
+
title: 'Workspaces',
|
|
4
|
+
link: '/help-center/docs/workspaces'
|
|
5
5
|
}, {
|
|
6
|
-
id: '
|
|
7
|
-
title: 'Getting Started
|
|
8
|
-
link: '/
|
|
6
|
+
id: 'gettingstarted',
|
|
7
|
+
title: 'Getting Started',
|
|
8
|
+
link: '/help-center/docs/gettingstarted'
|
|
9
9
|
}, {
|
|
10
|
-
id: '
|
|
11
|
-
title: '
|
|
12
|
-
link: '/help-center/
|
|
10
|
+
id: 'timetracking',
|
|
11
|
+
title: 'Time Tracking',
|
|
12
|
+
link: '/help-center/docs/timetracking'
|
|
13
|
+
}, {
|
|
14
|
+
id: 'time-rounding-blog',
|
|
15
|
+
title: 'The Rules, Standards & Practices for Timeclock rounding',
|
|
16
|
+
link: '/help-center/blog/time-rounding-blog'
|
|
13
17
|
}];export{popularArticlesMock};//# sourceMappingURL=mockData.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mockData.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"mockData.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;"}
|
|
@@ -72,17 +72,17 @@ import {jsx,jsxs}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
72
72
|
// Mock data for featured articles
|
|
73
73
|
const featuredArticles = [{
|
|
74
74
|
id: 'getting-started-with-perplexity',
|
|
75
|
-
title: 'Getting started with
|
|
75
|
+
title: 'Getting started with Clockbook',
|
|
76
76
|
href: '/get-started',
|
|
77
77
|
description: 'Perplexity is an AI-powered answer engine that searches the internet in real-time to answer any question.'
|
|
78
78
|
}, {
|
|
79
79
|
id: 'perplexity-expands-publisher',
|
|
80
|
-
title: '
|
|
80
|
+
title: 'Clockbook Expands Publisher Program with 15 New Media Partners',
|
|
81
81
|
href: '/help-center/spaces-library',
|
|
82
82
|
description: 'Perplexity has added major media partners to its publisher revenue-sharing program.'
|
|
83
83
|
}, {
|
|
84
84
|
id: 'student-guide-spaces',
|
|
85
|
-
title: "A student's guide to using
|
|
85
|
+
title: "A student's guide to using Clockbook Spaces",
|
|
86
86
|
href: '/help-center/student-hub',
|
|
87
87
|
description: 'Create a collaborative knowledge hub for your course, team, or study group. Ask questions, create notes, and organize resources - all in one place.'
|
|
88
88
|
}];
|
|
@@ -120,7 +120,7 @@ import {jsx,jsxs}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
120
120
|
}];
|
|
121
121
|
// Featured product section (Supply)
|
|
122
122
|
const featuredProduct = {
|
|
123
|
-
title: '
|
|
123
|
+
title: 'Clockbook Supply',
|
|
124
124
|
description: 'Thoughtfully-designed essentials that celebrate the pursuit of knowledge.',
|
|
125
125
|
ctaText: 'Visit the Shop',
|
|
126
126
|
image: Images.supply.products
|
|
@@ -129,7 +129,7 @@ import {jsx,jsxs}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
129
129
|
className: "min-h-screen bg-background",
|
|
130
130
|
children: [jsx(HeroSection, {
|
|
131
131
|
title: "How can we help?",
|
|
132
|
-
subtitle: "Get answers to all things
|
|
132
|
+
subtitle: "Get answers to all things Clockbook.",
|
|
133
133
|
onSearch: handleSearch
|
|
134
134
|
}), jsx("section", {
|
|
135
135
|
className: "py-16",
|
|
@@ -194,7 +194,7 @@ import {jsx,jsxs}from'react/jsx-runtime';import {Button}from'@admin-layout/tailw
|
|
|
194
194
|
className: "h-72 w-full overflow-hidden rounded-lg shadow-md md:w-1/2",
|
|
195
195
|
children: jsx("img", {
|
|
196
196
|
src: featuredProduct.image,
|
|
197
|
-
alt: "
|
|
197
|
+
alt: "Clockbook Supply Products",
|
|
198
198
|
className: "h-full w-full object-cover"
|
|
199
199
|
})
|
|
200
200
|
})]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../../../src/pages/LandingPage/index.tsx"],"sourcesContent":[null],"names":["_jsx"],"mappings":"seAUM,MAAA,WAAW,GAAG,MAAK;AACrB,EAAA,MAAA,QAAc,GAAA,WAAc,EAAA;AAE5B,EAAA,MAAA,YAAkB,GAAA,KAAI;AAClB,IAAA,OAAA,CAAA,GAAO,CAAC,uBAAsB,CAAA;;AAElC,GAAA;AAEA,EAAA,MAAA,mBAAyB,GAAA,YAAI;YACjB,CAAA,YAAa,CAAA;AACzB,GAAA;AAEA,EAAA,MAAA,kBAAwB,GAAA,WAAI;YAChB,CAAA,WAAY,CAAA;AACxB,GAAA;AAEA,EAAA,MAAA,mBAAyB,GAAA,YAAI;YACjB,CAAA,YAAa,CAAA;AACzB,GAAA;;AAGA,EAAA,MAAA,aAAmB,CAAA;AACf,IAAA,EAAA,EAAA,iBAAA;AACI,IAAA,IAAA,EAAA,cAAqB;AACrB,IAAA,KAAA,EAAA,iBAAoB;AACpB,IAAA,WAAA,EAAK,0CAAmB;AACxB,IAAA,IAAA,EAAAA,GAAA,CAAA,KAAA,CAAA,cAAuD,EAAA;AACvD,MAAA,KAAA,EAAA,EAAA;AACH,MAAA,MAAA,EAAA;AACD,KAAA;AACI,GAAA,EAAA;AACA,IAAA,EAAA,EAAA,oBAAuC;AACvC,IAAA,IAAA,EAAA,iCAA2B;AAC3B,IAAA,KAAA,EAAA,oBAAqD;AACrD,IAAA,WAAA,EAAM,wCAAgC;AACzC,IAAA,IAAA,EAAAA,GAAA,CAAA,KAAA,CAAA,iBAAA,EAAA;AACD,MAAA,KAAA,EAAA,EAAA;AACI,MAAA,MAAA,EAAE;AACF,KAAA;AACA,GAAA,EAAA;AACA,IAAA,EAAA,EAAA,SAAA;AACA,IAAA,IAAA,EAAA,mCAA0B;AAC7B,IAAA,KAAA,EAAA,yBAAA;AACD,IAAA,WAAA,EAAA,+CAAA;AACI,IAAA,IAAA,EAAAA,GAAE,MAAoB,CAAA,OAAA,EAAA;AACtB,MAAA,KAAA,EAAA,EAAA;AACA,MAAA,MAAA,EAAA;AACA,KAAA;AACA,GAAA,EAAA;AACH,IAAA,EAAA,EAAA,kBAAA;AACD,IAAA,IAAA,EAAA,+BAAA;AACI,IAAA,KAAA,EAAA,kBAAqB;AACrB,IAAA,WAAA,sCAAoC;AACpC,IAAA,IAAA,EAAAA,GAAA,CAAA,KAAwB,CAAA,eAAA,EAAA;AACxB,MAAA,KAAA,EAAA,EAAA;AACA,MAAA,MAAA,EAAA;AACH,KAAA;AACD,GAAA,EAAA;AACI,IAAA,EAAA,EAAA,iBAAS;AACT,IAAA,IAAA,EAAA,8BAAY;AACZ,IAAA,KAAA,EAAA,iBAA8B;AAC9B,IAAA,WAAA,EAAA,kCAAuD;AACvD,IAAA,IAAA,EAAAA,GAAA,CAAA,KAAM,CAAA,eAAW,EAAK;AACzB,MAAA,KAAA,EAAA,EAAA;MACH,MAAA,EAAA;KAEgC;AAClC,GAAA,EAAA;AACI,IAAA,EAAA,EAAA,KAAA;AACI,IAAA,KAAA,EAAA,KAAI;AACJ,IAAA,IAAA,EAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/pages/LandingPage/index.tsx"],"sourcesContent":[null],"names":["_jsx"],"mappings":"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"}
|
|
@@ -28,5 +28,7 @@ export declare const getAllCategoriesMetadata: () => Category[];
|
|
|
28
28
|
export declare const getCategoryById: (categoryId: string) => Category | null;
|
|
29
29
|
export declare const getArticleBySlug: (articleSlug: string) => Article | null;
|
|
30
30
|
export declare const loadArticleContent: (articleSlug: string) => Promise<Article | null>;
|
|
31
|
+
export declare const loadDocContent: (docSlug: string) => Promise<Article | null>;
|
|
32
|
+
export declare const loadBlogContent: (blogSlug: string) => Promise<Article | null>;
|
|
31
33
|
export declare const parseMarkdownToHtml: (markdownContent: string) => string;
|
|
32
34
|
//# sourceMappingURL=markdownLoader.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"markdownLoader.d.ts","sourceRoot":"","sources":["../../src/utils/markdownLoader.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,eAAe;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,OAAO;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,OAAQ,SAAQ,eAAe;IAC5C,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,OAAO,EAAE,CAAC;CACvB;AAED,MAAM,WAAW,QAAQ;IACrB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,OAAO,EAAE,CAAC;CACvB;
|
|
1
|
+
{"version":3,"file":"markdownLoader.d.ts","sourceRoot":"","sources":["../../src/utils/markdownLoader.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,eAAe;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,OAAO;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,OAAQ,SAAQ,eAAe;IAC5C,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,OAAO,EAAE,CAAC;CACvB;AAED,MAAM,WAAW,QAAQ;IACrB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,OAAO,EAAE,CAAC;CACvB;AA44DD,eAAO,MAAM,wBAAwB,QAAO,QAAQ,EAEnD,CAAC;AAEF,eAAO,MAAM,eAAe,GAAI,YAAY,MAAM,KAAG,QAAQ,GAAG,IAE/D,CAAC;AAEF,eAAO,MAAM,gBAAgB,GAAI,aAAa,MAAM,KAAG,OAAO,GAAG,IAMhE,CAAC;AAGF,eAAO,MAAM,kBAAkB,GAAU,aAAa,MAAM,KAAG,OAAO,CAAC,OAAO,GAAG,IAAI,CAgBpF,CAAC;AA6CF,eAAO,MAAM,cAAc,GAAU,SAAS,MAAM,KAAG,OAAO,CAAC,OAAO,GAAG,IAAI,CAqD5E,CAAC;AAGF,eAAO,MAAM,eAAe,GAAU,UAAU,MAAM,KAAG,OAAO,CAAC,OAAO,GAAG,IAAI,CAwD9E,CAAC;AAEF,eAAO,MAAM,mBAAmB,GAAI,iBAAiB,MAAM,KAAG,MAE7D,CAAC"}
|