@semiont/frontend 0.2.38 → 0.2.40
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/README.md +49 -0
- package/package.json +1 -1
- package/standalone/apps/frontend/.next/BUILD_ID +1 -1
- package/standalone/apps/frontend/.next/app-build-manifest.json +17 -17
- package/standalone/apps/frontend/.next/app-path-routes-manifest.json +3 -3
- package/standalone/apps/frontend/.next/build-manifest.json +2 -2
- package/standalone/apps/frontend/.next/prerender-manifest.json +3 -3
- package/standalone/apps/frontend/.next/server/app/[locale]/about/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/admin/devops/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/admin/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/admin/security/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/admin/users/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/auth/error/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/auth/mcp-setup/route_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/auth/signin/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/auth/signup/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/auth/welcome/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/know/compose/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/know/discover/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/know/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/know/resource/[id]/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/moderate/entity-tags/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/moderate/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/moderate/recent/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/moderate/tag-schemas/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/privacy/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/[locale]/terms/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/_not-found.html +1 -1
- package/standalone/apps/frontend/.next/server/app/_not-found.rsc +1 -1
- package/standalone/apps/frontend/.next/server/app/api/auth/[...nextauth]/route_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/api/cookies/consent/route_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/api/cookies/export/route_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app/api/resources/[id]/route_client-reference-manifest.js +1 -1
- package/standalone/apps/frontend/.next/server/app-paths-manifest.json +3 -3
- package/standalone/apps/frontend/.next/server/middleware-manifest.json +5 -5
- package/standalone/apps/frontend/.next/server/pages/404.html +1 -1
- package/standalone/apps/frontend/.next/server/pages/500.html +1 -1
- package/standalone/apps/frontend/.next/server/server-reference-manifest.json +1 -1
- package/standalone/apps/frontend/package.json +3 -3
- package/standalone/package.json +1 -1
- package/standalone/packages/core/package.json +1 -1
- /package/standalone/apps/frontend/.next/static/{nYub3Py8_Y-ne6bUw3IFQ → nv2BjLjOu4VY1Ohm5ayO8}/_buildManifest.js +0 -0
- /package/standalone/apps/frontend/.next/static/{nYub3Py8_Y-ne6bUw3IFQ → nv2BjLjOu4VY1Ohm5ayO8}/_ssgManifest.js +0 -0
package/README.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# @semiont/frontend
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@semiont/frontend)
|
|
4
|
+
[](https://www.npmjs.com/package/@semiont/frontend)
|
|
5
|
+
[](https://github.com/The-AI-Alliance/semiont/blob/main/LICENSE)
|
|
6
|
+
|
|
7
|
+
Pre-built Semiont frontend server as a Next.js standalone output. This package contains the compiled frontend application ready to run with Node.js.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm install -g @semiont/frontend
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
This package is typically installed automatically by `semiont provision` when using the [Semiont CLI](https://www.npmjs.com/package/@semiont/cli).
|
|
16
|
+
|
|
17
|
+
## Usage
|
|
18
|
+
|
|
19
|
+
The recommended way to run Semiont is through the CLI:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm install -g @semiont/cli
|
|
23
|
+
semiont init my-project
|
|
24
|
+
cd my-project
|
|
25
|
+
semiont provision
|
|
26
|
+
semiont start
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
The CLI handles configuration, environment setup, and process management.
|
|
30
|
+
|
|
31
|
+
## Direct Usage
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
semiont-frontend
|
|
35
|
+
# or
|
|
36
|
+
node node_modules/@semiont/frontend/standalone/apps/frontend/server.js
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Requires environment variables (`NEXTAUTH_URL`, `NEXTAUTH_SECRET`, `SERVER_API_URL`, etc.) to be configured.
|
|
40
|
+
|
|
41
|
+
## What's Included
|
|
42
|
+
|
|
43
|
+
- `standalone/` - Next.js standalone output with all dependencies bundled
|
|
44
|
+
|
|
45
|
+
## Links
|
|
46
|
+
|
|
47
|
+
- [Semiont GitHub](https://github.com/The-AI-Alliance/semiont)
|
|
48
|
+
- [Semiont CLI](https://www.npmjs.com/package/@semiont/cli)
|
|
49
|
+
- [Documentation](https://github.com/The-AI-Alliance/semiont#readme)
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
nv2BjLjOu4VY1Ohm5ayO8
|
|
@@ -72,23 +72,23 @@
|
|
|
72
72
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
73
73
|
"static/chunks/app/api/auth/[...nextauth]/route-24502971e8577474.js"
|
|
74
74
|
],
|
|
75
|
-
"/api/cookies/
|
|
75
|
+
"/api/cookies/export/route": [
|
|
76
76
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
77
77
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
78
78
|
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
79
79
|
"static/css/9ed9607bad31b45e.css",
|
|
80
80
|
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
81
81
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
82
|
-
"static/chunks/app/api/cookies/
|
|
82
|
+
"static/chunks/app/api/cookies/export/route-5c5bd56c39187fd1.js"
|
|
83
83
|
],
|
|
84
|
-
"/api/cookies/
|
|
84
|
+
"/api/cookies/consent/route": [
|
|
85
85
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
86
86
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
87
87
|
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
88
88
|
"static/css/9ed9607bad31b45e.css",
|
|
89
89
|
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
90
90
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
91
|
-
"static/chunks/app/api/cookies/
|
|
91
|
+
"static/chunks/app/api/cookies/consent/route-680f8e085df19751.js"
|
|
92
92
|
],
|
|
93
93
|
"/[locale]/layout": [
|
|
94
94
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
@@ -222,15 +222,6 @@
|
|
|
222
222
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
223
223
|
"static/chunks/app/[locale]/admin/security/page-8031d11e8dccef6c.js"
|
|
224
224
|
],
|
|
225
|
-
"/[locale]/admin/users/page": [
|
|
226
|
-
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
227
|
-
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
228
|
-
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
229
|
-
"static/css/9ed9607bad31b45e.css",
|
|
230
|
-
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
231
|
-
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
232
|
-
"static/chunks/app/[locale]/admin/users/page-a978206777229291.js"
|
|
233
|
-
],
|
|
234
225
|
"/[locale]/know/layout": [
|
|
235
226
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
236
227
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
@@ -249,23 +240,23 @@
|
|
|
249
240
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
250
241
|
"static/chunks/app/[locale]/know/compose/page-7c16ece328eb4a91.js"
|
|
251
242
|
],
|
|
252
|
-
"/[locale]/know/
|
|
243
|
+
"/[locale]/know/discover/page": [
|
|
253
244
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
254
245
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
255
246
|
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
256
247
|
"static/css/9ed9607bad31b45e.css",
|
|
257
248
|
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
258
249
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
259
|
-
"static/chunks/app/[locale]/know/
|
|
250
|
+
"static/chunks/app/[locale]/know/discover/page-f9d0032f45241437.js"
|
|
260
251
|
],
|
|
261
|
-
"/[locale]/
|
|
252
|
+
"/[locale]/admin/users/page": [
|
|
262
253
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
263
254
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
264
255
|
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
265
256
|
"static/css/9ed9607bad31b45e.css",
|
|
266
257
|
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
267
258
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
268
|
-
"static/chunks/app/[locale]/
|
|
259
|
+
"static/chunks/app/[locale]/admin/users/page-a978206777229291.js"
|
|
269
260
|
],
|
|
270
261
|
"/[locale]/know/page": [
|
|
271
262
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
@@ -294,6 +285,15 @@
|
|
|
294
285
|
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
295
286
|
"static/chunks/app/[locale]/moderate/entity-tags/page-f76e2312764ebe0c.js"
|
|
296
287
|
],
|
|
288
|
+
"/[locale]/know/resource/[id]/page": [
|
|
289
|
+
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
290
|
+
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
291
|
+
"static/chunks/common-d8e3aad4ef182cd5.js",
|
|
292
|
+
"static/css/9ed9607bad31b45e.css",
|
|
293
|
+
"static/chunks/vendors-8159ca2e2437ac1f.js",
|
|
294
|
+
"static/chunks/main-app-4616290e0bdaf4ae.js",
|
|
295
|
+
"static/chunks/app/[locale]/know/resource/[id]/page-4cb67f9bf8be8f1a.js"
|
|
296
|
+
],
|
|
297
297
|
"/[locale]/moderate/page": [
|
|
298
298
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
299
299
|
"static/chunks/87c73c54-dd8d81ac9604067c.js",
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
"/api/resources/[id]/route": "/api/resources/[id]",
|
|
4
4
|
"/[locale]/auth/mcp-setup/route": "/[locale]/auth/mcp-setup",
|
|
5
5
|
"/api/auth/[...nextauth]/route": "/api/auth/[...nextauth]",
|
|
6
|
-
"/api/cookies/consent/route": "/api/cookies/consent",
|
|
7
6
|
"/api/cookies/export/route": "/api/cookies/export",
|
|
7
|
+
"/api/cookies/consent/route": "/api/cookies/consent",
|
|
8
8
|
"/[locale]/about/page": "/[locale]/about",
|
|
9
9
|
"/[locale]/auth/error/page": "/[locale]/auth/error",
|
|
10
10
|
"/[locale]/auth/signin/page": "/[locale]/auth/signin",
|
|
@@ -16,12 +16,12 @@
|
|
|
16
16
|
"/[locale]/admin/devops/page": "/[locale]/admin/devops",
|
|
17
17
|
"/[locale]/admin/page": "/[locale]/admin",
|
|
18
18
|
"/[locale]/admin/security/page": "/[locale]/admin/security",
|
|
19
|
-
"/[locale]/admin/users/page": "/[locale]/admin/users",
|
|
20
19
|
"/[locale]/know/compose/page": "/[locale]/know/compose",
|
|
21
|
-
"/[locale]/know/resource/[id]/page": "/[locale]/know/resource/[id]",
|
|
22
20
|
"/[locale]/know/discover/page": "/[locale]/know/discover",
|
|
21
|
+
"/[locale]/admin/users/page": "/[locale]/admin/users",
|
|
23
22
|
"/[locale]/know/page": "/[locale]/know",
|
|
24
23
|
"/[locale]/moderate/entity-tags/page": "/[locale]/moderate/entity-tags",
|
|
24
|
+
"/[locale]/know/resource/[id]/page": "/[locale]/know/resource/[id]",
|
|
25
25
|
"/[locale]/moderate/page": "/[locale]/moderate",
|
|
26
26
|
"/[locale]/moderate/recent/page": "/[locale]/moderate/recent",
|
|
27
27
|
"/[locale]/moderate/tag-schemas/page": "/[locale]/moderate/tag-schemas"
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
"devFiles": [],
|
|
6
6
|
"ampDevFiles": [],
|
|
7
7
|
"lowPriorityFiles": [
|
|
8
|
-
"static/
|
|
9
|
-
"static/
|
|
8
|
+
"static/nv2BjLjOu4VY1Ohm5ayO8/_buildManifest.js",
|
|
9
|
+
"static/nv2BjLjOu4VY1Ohm5ayO8/_ssgManifest.js"
|
|
10
10
|
],
|
|
11
11
|
"rootMainFiles": [
|
|
12
12
|
"static/chunks/webpack-bb603b0ace5d73b8.js",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"dynamicRoutes": {},
|
|
31
31
|
"notFoundRoutes": [],
|
|
32
32
|
"preview": {
|
|
33
|
-
"previewModeId": "
|
|
34
|
-
"previewModeSigningKey": "
|
|
35
|
-
"previewModeEncryptionKey": "
|
|
33
|
+
"previewModeId": "ca1a5ea45719f85a46b714caf0df909a",
|
|
34
|
+
"previewModeSigningKey": "0a88d0987224c259c8be4464659880db508aff1e27a539bb1a9b868a59968327",
|
|
35
|
+
"previewModeEncryptionKey": "909df8828145b69c3179b4f01fe82909c159ada3b45e7ca66060f1dfb505439d"
|
|
36
36
|
}
|
|
37
37
|
}
|
package/standalone/apps/frontend/.next/server/app/[locale]/about/page_client-reference-manifest.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/[locale]/about/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"2510":{"*":{"id":"26926","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"7394":{"*":{"id":"29684","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"13395":{"*":{"id":"51735","name":"*","chunks":[],"async":false}},"14833":{"*":{"id":"33886","name":"*","chunks":[],"async":false}},"14922":{"*":{"id":"17680","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"15317":{"*":{"id":"70807","name":"*","chunks":[],"async":false}},"20108":{"*":{"id":"43650","name":"*","chunks":[],"async":false}},"23772":{"*":{"id":"71230","name":"*","chunks":[],"async":false}},"25984":{"*":{"id":"81760","name":"*","chunks":[],"async":false}},"26349":{"*":{"id":"84935","name":"*","chunks":[],"async":false}},"27246":{"*":{"id":"34692","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5600","name":"*","chunks":[],"async":false}},"32033":{"*":{"id":"48350","name":"*","chunks":[],"async":false}},"33747":{"*":{"id":"42682","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"41424":{"*":{"id":"10291","name":"*","chunks":[],"async":false}},"43739":{"*":{"id":"79805","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"30658","name":"*","chunks":[],"async":false}},"57182":{"*":{"id":"39396","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"74774","name":"*","chunks":[],"async":false}},"64357":{"*":{"id":"71642","name":"*","chunks":[],"async":false}},"66636":{"*":{"id":"22850","name":"*","chunks":[],"async":false}},"74687":{"*":{"id":"93543","name":"*","chunks":[],"async":false}},"74902":{"*":{"id":"90589","name":"*","chunks":[],"async":false}},"76122":{"*":{"id":"52846","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"85931":{"*":{"id":"73279","name":"*","chunks":[],"async":false}},"89992":{"*":{"id":"23492","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"90357":{"*":{"id":"7841","name":"*","chunks":[],"async":false}},"90663":{"*":{"id":"25619","name":"*","chunks":[],"async":false}},"94244":{"*":{"id":"62459","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"47569","name":"*","chunks":[],"async":false}},"98173":{"*":{"id":"56962","name":"*","chunks":[],"async":false}},"98235":{"*":{"id":"33441","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/client-page.js":{"id":41012,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/client-page.js":{"id":41012,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/client-segment.js":{"id":10540,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/client-segment.js":{"id":10540,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/layout-router.js":{"id":85341,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/layout-router.js":{"id":85341,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":94777,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":94777,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/render-from-template-context.js":{"id":90025,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":90025,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/lib/framework/boundary-components.js":{"id":15104,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":15104,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":36505,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":36505,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/global-error.tsx":{"id":66636,"name":"*","chunks":["4219","static/chunks/app/global-error-c894441824fc03d1.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/error.tsx":{"id":2510,"name":"*","chunks":["8039","static/chunks/app/error-4ec2f52abc66bc6c.js"],"async":false},"/home/runner/work/semiont/semiont/packages/react-ui/dist/index.mjs":{"id":47001,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/globals.css":{"id":8761,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/providers.tsx":{"id":7394,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/components/ClientModals.tsx":{"id":74687,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/components/CookieBanner.tsx":{"id":13395,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/styles/animations.css":{"id":51885,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next-intl/dist/esm/production/navigation/shared/BaseLink.js":{"id":30634,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next-intl/dist/esm/production/shared/NextIntlClientProvider.js":{"id":60174,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/font/google/target.css?{\"path\":\"src/app/[locale]/layout.tsx\",\"import\":\"Inter\",\"arguments\":[{\"subsets\":[\"latin\"]}],\"variableName\":\"inter\"}":{"id":91790,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/font/google/target.css?{\"path\":\"src/app/[locale]/layout.tsx\",\"import\":\"Orbitron\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-orbitron\"}],\"variableName\":\"orbitron\"}":{"id":29719,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/not-found.tsx":{"id":98235,"name":"*","chunks":["3224","static/chunks/app/%5Blocale%5D/not-found-9338290efe925a85.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/about/page.tsx":{"id":43739,"name":"*","chunks":["8111","static/chunks/app/%5Blocale%5D/about/page-28023b5ae5e22ad9.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/error/page.tsx":{"id":32033,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/signin/page.tsx":{"id":76122,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/signup/page.tsx":{"id":98173,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/welcome/page.tsx":{"id":57182,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/page.tsx":{"id":90357,"name":"*","chunks":["465","static/chunks/app/%5Blocale%5D/page-46fad01f54cffcaf.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/privacy/page.tsx":{"id":90663,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/terms/page.tsx":{"id":25984,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/layout.tsx":{"id":26349,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/devops/page.tsx":{"id":20108,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/security/client.tsx":{"id":33747,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/users/client.tsx":{"id":89992,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/layout.tsx":{"id":14922,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/compose/page.tsx":{"id":85931,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/resource/[id]/page.tsx":{"id":94244,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/discover/page.tsx":{"id":15317,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/page.tsx":{"id":27246,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/layout.tsx":{"id":64357,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/entity-tags/page.tsx":{"id":74902,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/page.tsx":{"id":23772,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/recent/page.tsx":{"id":41424,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/tag-schemas/page.tsx":{"id":14833,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/runner/work/semiont/semiont/apps/frontend/src/":[{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/global-error":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/not-found":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/layout":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/error":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/layout":[{"inlined":false,"path":"static/css/3f5226338fdd5e06.css"},{"inlined":false,"path":"static/css/081bb8fb6df14532.css"},{"inlined":false,"path":"static/css/35f4d55fe336a086.css"},{"inlined":false,"path":"static/css/23b8537fef38b0e6.css"},{"inlined":false,"path":"static/css/f7f0ede9090e5e99.css"},{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"},{"inlined":false,"path":"static/css/657e03e50dc00ae1.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/not-found":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/page":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/about/page":[]},"rscModuleMapping":{"2510":{"*":{"id":"26412","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"49743","name":"*","chunks":[],"async":false}},"7394":{"*":{"id":"34664","name":"*","chunks":[],"async":false}},"8761":{"*":{"id":"14276","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"88248","name":"*","chunks":[],"async":false}},"13395":{"*":{"id":"44861","name":"*","chunks":[],"async":false}},"14833":{"*":{"id":"78474","name":"*","chunks":[],"async":false}},"14922":{"*":{"id":"91305","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"95094","name":"*","chunks":[],"async":false}},"15317":{"*":{"id":"70830","name":"*","chunks":[],"async":false}},"20108":{"*":{"id":"67736","name":"*","chunks":[],"async":false}},"23772":{"*":{"id":"67256","name":"*","chunks":[],"async":false}},"25984":{"*":{"id":"31374","name":"*","chunks":[],"async":false}},"26349":{"*":{"id":"31805","name":"*","chunks":[],"async":false}},"27246":{"*":{"id":"69150","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5314","name":"*","chunks":[],"async":false}},"32033":{"*":{"id":"70262","name":"*","chunks":[],"async":false}},"33747":{"*":{"id":"67211","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"67487","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"56542","name":"*","chunks":[],"async":false}},"41424":{"*":{"id":"71144","name":"*","chunks":[],"async":false}},"43739":{"*":{"id":"6900","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"61345","name":"*","chunks":[],"async":false}},"51885":{"*":{"id":"50112","name":"*","chunks":[],"async":false}},"57182":{"*":{"id":"77792","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"69980","name":"*","chunks":[],"async":false}},"64357":{"*":{"id":"75555","name":"*","chunks":[],"async":false}},"66636":{"*":{"id":"90488","name":"*","chunks":[],"async":false}},"74687":{"*":{"id":"57474","name":"*","chunks":[],"async":false}},"74902":{"*":{"id":"19948","name":"*","chunks":[],"async":false}},"76122":{"*":{"id":"13536","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"96231","name":"*","chunks":[],"async":false}},"85931":{"*":{"id":"76453","name":"*","chunks":[],"async":false}},"89992":{"*":{"id":"82365","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"72041","name":"*","chunks":[],"async":false}},"90357":{"*":{"id":"8650","name":"*","chunks":[],"async":false}},"90663":{"*":{"id":"98541","name":"*","chunks":[],"async":false}},"94244":{"*":{"id":"37103","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"10959","name":"*","chunks":[],"async":false}},"98173":{"*":{"id":"96270","name":"*","chunks":[],"async":false}},"98235":{"*":{"id":"71743","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5600","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"30658","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"74774","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"47569","name":"*","chunks":[],"async":false}}}}
|
|
1
|
+
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/[locale]/about/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"2510":{"*":{"id":"26926","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"7394":{"*":{"id":"29684","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"13395":{"*":{"id":"51735","name":"*","chunks":[],"async":false}},"14833":{"*":{"id":"33886","name":"*","chunks":[],"async":false}},"14922":{"*":{"id":"17680","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"15317":{"*":{"id":"70807","name":"*","chunks":[],"async":false}},"20108":{"*":{"id":"43650","name":"*","chunks":[],"async":false}},"23772":{"*":{"id":"71230","name":"*","chunks":[],"async":false}},"25984":{"*":{"id":"81760","name":"*","chunks":[],"async":false}},"26349":{"*":{"id":"84935","name":"*","chunks":[],"async":false}},"27246":{"*":{"id":"34692","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5600","name":"*","chunks":[],"async":false}},"32033":{"*":{"id":"48350","name":"*","chunks":[],"async":false}},"33747":{"*":{"id":"42682","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"41424":{"*":{"id":"10291","name":"*","chunks":[],"async":false}},"43739":{"*":{"id":"79805","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"30658","name":"*","chunks":[],"async":false}},"57182":{"*":{"id":"39396","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"74774","name":"*","chunks":[],"async":false}},"64357":{"*":{"id":"71642","name":"*","chunks":[],"async":false}},"66636":{"*":{"id":"22850","name":"*","chunks":[],"async":false}},"74687":{"*":{"id":"93543","name":"*","chunks":[],"async":false}},"74902":{"*":{"id":"90589","name":"*","chunks":[],"async":false}},"76122":{"*":{"id":"52846","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"85931":{"*":{"id":"73279","name":"*","chunks":[],"async":false}},"89992":{"*":{"id":"23492","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"90357":{"*":{"id":"7841","name":"*","chunks":[],"async":false}},"90663":{"*":{"id":"25619","name":"*","chunks":[],"async":false}},"94244":{"*":{"id":"62459","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"47569","name":"*","chunks":[],"async":false}},"98173":{"*":{"id":"56962","name":"*","chunks":[],"async":false}},"98235":{"*":{"id":"33441","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/client-page.js":{"id":41012,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/client-page.js":{"id":41012,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/client-segment.js":{"id":10540,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/client-segment.js":{"id":10540,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/layout-router.js":{"id":85341,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/layout-router.js":{"id":85341,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":94777,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":94777,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/render-from-template-context.js":{"id":90025,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":90025,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/lib/framework/boundary-components.js":{"id":15104,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":15104,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":36505,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":36505,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/global-error.tsx":{"id":66636,"name":"*","chunks":["4219","static/chunks/app/global-error-c894441824fc03d1.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/error.tsx":{"id":2510,"name":"*","chunks":["8039","static/chunks/app/error-4ec2f52abc66bc6c.js"],"async":false},"/home/runner/work/semiont/semiont/packages/react-ui/dist/index.mjs":{"id":47001,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/globals.css":{"id":8761,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/providers.tsx":{"id":7394,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/components/ClientModals.tsx":{"id":74687,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/components/CookieBanner.tsx":{"id":13395,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/styles/animations.css":{"id":51885,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next-intl/dist/esm/production/navigation/shared/BaseLink.js":{"id":30634,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next-intl/dist/esm/production/shared/NextIntlClientProvider.js":{"id":60174,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/font/google/target.css?{\"path\":\"src/app/[locale]/layout.tsx\",\"import\":\"Inter\",\"arguments\":[{\"subsets\":[\"latin\"]}],\"variableName\":\"inter\"}":{"id":91790,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/font/google/target.css?{\"path\":\"src/app/[locale]/layout.tsx\",\"import\":\"Orbitron\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-orbitron\"}],\"variableName\":\"orbitron\"}":{"id":29719,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/not-found.tsx":{"id":98235,"name":"*","chunks":["3224","static/chunks/app/%5Blocale%5D/not-found-9338290efe925a85.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/about/page.tsx":{"id":43739,"name":"*","chunks":["8111","static/chunks/app/%5Blocale%5D/about/page-28023b5ae5e22ad9.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/error/page.tsx":{"id":32033,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/signin/page.tsx":{"id":76122,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/signup/page.tsx":{"id":98173,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/welcome/page.tsx":{"id":57182,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/page.tsx":{"id":90357,"name":"*","chunks":["465","static/chunks/app/%5Blocale%5D/page-46fad01f54cffcaf.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/privacy/page.tsx":{"id":90663,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/terms/page.tsx":{"id":25984,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/layout.tsx":{"id":26349,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/devops/page.tsx":{"id":20108,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/security/client.tsx":{"id":33747,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/layout.tsx":{"id":14922,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/compose/page.tsx":{"id":85931,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/discover/page.tsx":{"id":15317,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/users/client.tsx":{"id":89992,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/page.tsx":{"id":27246,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/layout.tsx":{"id":64357,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/entity-tags/page.tsx":{"id":74902,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/resource/[id]/page.tsx":{"id":94244,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/page.tsx":{"id":23772,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/recent/page.tsx":{"id":41424,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/tag-schemas/page.tsx":{"id":14833,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/runner/work/semiont/semiont/apps/frontend/src/":[{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/global-error":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/not-found":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/layout":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/error":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/layout":[{"inlined":false,"path":"static/css/3f5226338fdd5e06.css"},{"inlined":false,"path":"static/css/081bb8fb6df14532.css"},{"inlined":false,"path":"static/css/35f4d55fe336a086.css"},{"inlined":false,"path":"static/css/23b8537fef38b0e6.css"},{"inlined":false,"path":"static/css/f7f0ede9090e5e99.css"},{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"},{"inlined":false,"path":"static/css/657e03e50dc00ae1.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/not-found":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/page":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/about/page":[]},"rscModuleMapping":{"2510":{"*":{"id":"26412","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"49743","name":"*","chunks":[],"async":false}},"7394":{"*":{"id":"34664","name":"*","chunks":[],"async":false}},"8761":{"*":{"id":"14276","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"88248","name":"*","chunks":[],"async":false}},"13395":{"*":{"id":"44861","name":"*","chunks":[],"async":false}},"14833":{"*":{"id":"78474","name":"*","chunks":[],"async":false}},"14922":{"*":{"id":"91305","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"95094","name":"*","chunks":[],"async":false}},"15317":{"*":{"id":"70830","name":"*","chunks":[],"async":false}},"20108":{"*":{"id":"67736","name":"*","chunks":[],"async":false}},"23772":{"*":{"id":"67256","name":"*","chunks":[],"async":false}},"25984":{"*":{"id":"31374","name":"*","chunks":[],"async":false}},"26349":{"*":{"id":"31805","name":"*","chunks":[],"async":false}},"27246":{"*":{"id":"69150","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5314","name":"*","chunks":[],"async":false}},"32033":{"*":{"id":"70262","name":"*","chunks":[],"async":false}},"33747":{"*":{"id":"67211","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"67487","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"56542","name":"*","chunks":[],"async":false}},"41424":{"*":{"id":"71144","name":"*","chunks":[],"async":false}},"43739":{"*":{"id":"6900","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"61345","name":"*","chunks":[],"async":false}},"51885":{"*":{"id":"50112","name":"*","chunks":[],"async":false}},"57182":{"*":{"id":"77792","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"69980","name":"*","chunks":[],"async":false}},"64357":{"*":{"id":"75555","name":"*","chunks":[],"async":false}},"66636":{"*":{"id":"90488","name":"*","chunks":[],"async":false}},"74687":{"*":{"id":"57474","name":"*","chunks":[],"async":false}},"74902":{"*":{"id":"19948","name":"*","chunks":[],"async":false}},"76122":{"*":{"id":"13536","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"96231","name":"*","chunks":[],"async":false}},"85931":{"*":{"id":"76453","name":"*","chunks":[],"async":false}},"89992":{"*":{"id":"82365","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"72041","name":"*","chunks":[],"async":false}},"90357":{"*":{"id":"8650","name":"*","chunks":[],"async":false}},"90663":{"*":{"id":"98541","name":"*","chunks":[],"async":false}},"94244":{"*":{"id":"37103","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"10959","name":"*","chunks":[],"async":false}},"98173":{"*":{"id":"96270","name":"*","chunks":[],"async":false}},"98235":{"*":{"id":"71743","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5600","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"30658","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"74774","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"47569","name":"*","chunks":[],"async":false}}}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/[locale]/admin/devops/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"2510":{"*":{"id":"26926","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"7394":{"*":{"id":"29684","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"13395":{"*":{"id":"51735","name":"*","chunks":[],"async":false}},"14833":{"*":{"id":"33886","name":"*","chunks":[],"async":false}},"14922":{"*":{"id":"17680","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"15317":{"*":{"id":"70807","name":"*","chunks":[],"async":false}},"20108":{"*":{"id":"43650","name":"*","chunks":[],"async":false}},"23772":{"*":{"id":"71230","name":"*","chunks":[],"async":false}},"25984":{"*":{"id":"81760","name":"*","chunks":[],"async":false}},"26349":{"*":{"id":"84935","name":"*","chunks":[],"async":false}},"27246":{"*":{"id":"34692","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5600","name":"*","chunks":[],"async":false}},"32033":{"*":{"id":"48350","name":"*","chunks":[],"async":false}},"33747":{"*":{"id":"42682","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"41424":{"*":{"id":"10291","name":"*","chunks":[],"async":false}},"43739":{"*":{"id":"79805","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"30658","name":"*","chunks":[],"async":false}},"57182":{"*":{"id":"39396","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"74774","name":"*","chunks":[],"async":false}},"64357":{"*":{"id":"71642","name":"*","chunks":[],"async":false}},"66636":{"*":{"id":"22850","name":"*","chunks":[],"async":false}},"74687":{"*":{"id":"93543","name":"*","chunks":[],"async":false}},"74902":{"*":{"id":"90589","name":"*","chunks":[],"async":false}},"76122":{"*":{"id":"52846","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"85931":{"*":{"id":"73279","name":"*","chunks":[],"async":false}},"89992":{"*":{"id":"23492","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"90357":{"*":{"id":"7841","name":"*","chunks":[],"async":false}},"90663":{"*":{"id":"25619","name":"*","chunks":[],"async":false}},"94244":{"*":{"id":"62459","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"47569","name":"*","chunks":[],"async":false}},"98173":{"*":{"id":"56962","name":"*","chunks":[],"async":false}},"98235":{"*":{"id":"33441","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/client-page.js":{"id":41012,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/client-page.js":{"id":41012,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/client-segment.js":{"id":10540,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/client-segment.js":{"id":10540,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/layout-router.js":{"id":85341,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/layout-router.js":{"id":85341,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":94777,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":94777,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/render-from-template-context.js":{"id":90025,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":90025,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/lib/framework/boundary-components.js":{"id":15104,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":15104,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":36505,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":36505,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/global-error.tsx":{"id":66636,"name":"*","chunks":["4219","static/chunks/app/global-error-c894441824fc03d1.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/error.tsx":{"id":2510,"name":"*","chunks":["8039","static/chunks/app/error-4ec2f52abc66bc6c.js"],"async":false},"/home/runner/work/semiont/semiont/packages/react-ui/dist/index.mjs":{"id":47001,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/globals.css":{"id":8761,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/providers.tsx":{"id":7394,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/components/ClientModals.tsx":{"id":74687,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/components/CookieBanner.tsx":{"id":13395,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/styles/animations.css":{"id":51885,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next-intl/dist/esm/production/navigation/shared/BaseLink.js":{"id":30634,"name":"*","chunks":["6089","static/chunks/app/%5Blocale%5D/admin/page-fc5e1da86912c64f.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next-intl/dist/esm/production/shared/NextIntlClientProvider.js":{"id":60174,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/font/google/target.css?{\"path\":\"src/app/[locale]/layout.tsx\",\"import\":\"Inter\",\"arguments\":[{\"subsets\":[\"latin\"]}],\"variableName\":\"inter\"}":{"id":91790,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/font/google/target.css?{\"path\":\"src/app/[locale]/layout.tsx\",\"import\":\"Orbitron\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-orbitron\"}],\"variableName\":\"orbitron\"}":{"id":29719,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/not-found.tsx":{"id":98235,"name":"*","chunks":["3224","static/chunks/app/%5Blocale%5D/not-found-9338290efe925a85.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/about/page.tsx":{"id":43739,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/error/page.tsx":{"id":32033,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/signin/page.tsx":{"id":76122,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/signup/page.tsx":{"id":98173,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/welcome/page.tsx":{"id":57182,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/page.tsx":{"id":90357,"name":"*","chunks":["465","static/chunks/app/%5Blocale%5D/page-46fad01f54cffcaf.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/privacy/page.tsx":{"id":90663,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/terms/page.tsx":{"id":25984,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/layout.tsx":{"id":26349,"name":"*","chunks":["4490","static/chunks/app/%5Blocale%5D/admin/layout-62ef934e6bcc18b1.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/devops/page.tsx":{"id":20108,"name":"*","chunks":["6043","static/chunks/app/%5Blocale%5D/admin/devops/page-da9614b9f1606d7b.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/security/client.tsx":{"id":33747,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/users/client.tsx":{"id":89992,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/layout.tsx":{"id":14922,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/compose/page.tsx":{"id":85931,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/resource/[id]/page.tsx":{"id":94244,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/discover/page.tsx":{"id":15317,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/page.tsx":{"id":27246,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/layout.tsx":{"id":64357,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/entity-tags/page.tsx":{"id":74902,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/page.tsx":{"id":23772,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/recent/page.tsx":{"id":41424,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/tag-schemas/page.tsx":{"id":14833,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/runner/work/semiont/semiont/apps/frontend/src/":[{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/global-error":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/not-found":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/layout":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/error":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/layout":[{"inlined":false,"path":"static/css/3f5226338fdd5e06.css"},{"inlined":false,"path":"static/css/081bb8fb6df14532.css"},{"inlined":false,"path":"static/css/35f4d55fe336a086.css"},{"inlined":false,"path":"static/css/23b8537fef38b0e6.css"},{"inlined":false,"path":"static/css/f7f0ede9090e5e99.css"},{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"},{"inlined":false,"path":"static/css/657e03e50dc00ae1.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/not-found":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/page":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/layout":[{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/page":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/devops/page":[{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"}]},"rscModuleMapping":{"2510":{"*":{"id":"26412","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"49743","name":"*","chunks":[],"async":false}},"7394":{"*":{"id":"34664","name":"*","chunks":[],"async":false}},"8761":{"*":{"id":"14276","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"88248","name":"*","chunks":[],"async":false}},"13395":{"*":{"id":"44861","name":"*","chunks":[],"async":false}},"14833":{"*":{"id":"78474","name":"*","chunks":[],"async":false}},"14922":{"*":{"id":"91305","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"95094","name":"*","chunks":[],"async":false}},"15317":{"*":{"id":"70830","name":"*","chunks":[],"async":false}},"20108":{"*":{"id":"67736","name":"*","chunks":[],"async":false}},"23772":{"*":{"id":"67256","name":"*","chunks":[],"async":false}},"25984":{"*":{"id":"31374","name":"*","chunks":[],"async":false}},"26349":{"*":{"id":"31805","name":"*","chunks":[],"async":false}},"27246":{"*":{"id":"69150","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5314","name":"*","chunks":[],"async":false}},"32033":{"*":{"id":"70262","name":"*","chunks":[],"async":false}},"33747":{"*":{"id":"67211","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"67487","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"56542","name":"*","chunks":[],"async":false}},"41424":{"*":{"id":"71144","name":"*","chunks":[],"async":false}},"43739":{"*":{"id":"6900","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"61345","name":"*","chunks":[],"async":false}},"51885":{"*":{"id":"50112","name":"*","chunks":[],"async":false}},"57182":{"*":{"id":"77792","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"69980","name":"*","chunks":[],"async":false}},"64357":{"*":{"id":"75555","name":"*","chunks":[],"async":false}},"66636":{"*":{"id":"90488","name":"*","chunks":[],"async":false}},"74687":{"*":{"id":"57474","name":"*","chunks":[],"async":false}},"74902":{"*":{"id":"19948","name":"*","chunks":[],"async":false}},"76122":{"*":{"id":"13536","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"96231","name":"*","chunks":[],"async":false}},"85931":{"*":{"id":"76453","name":"*","chunks":[],"async":false}},"89992":{"*":{"id":"82365","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"72041","name":"*","chunks":[],"async":false}},"90357":{"*":{"id":"8650","name":"*","chunks":[],"async":false}},"90663":{"*":{"id":"98541","name":"*","chunks":[],"async":false}},"94244":{"*":{"id":"37103","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"10959","name":"*","chunks":[],"async":false}},"98173":{"*":{"id":"96270","name":"*","chunks":[],"async":false}},"98235":{"*":{"id":"71743","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5600","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"30658","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"74774","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"47569","name":"*","chunks":[],"async":false}}}}
|
|
1
|
+
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/[locale]/admin/devops/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"2510":{"*":{"id":"26926","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"7394":{"*":{"id":"29684","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"13395":{"*":{"id":"51735","name":"*","chunks":[],"async":false}},"14833":{"*":{"id":"33886","name":"*","chunks":[],"async":false}},"14922":{"*":{"id":"17680","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"15317":{"*":{"id":"70807","name":"*","chunks":[],"async":false}},"20108":{"*":{"id":"43650","name":"*","chunks":[],"async":false}},"23772":{"*":{"id":"71230","name":"*","chunks":[],"async":false}},"25984":{"*":{"id":"81760","name":"*","chunks":[],"async":false}},"26349":{"*":{"id":"84935","name":"*","chunks":[],"async":false}},"27246":{"*":{"id":"34692","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5600","name":"*","chunks":[],"async":false}},"32033":{"*":{"id":"48350","name":"*","chunks":[],"async":false}},"33747":{"*":{"id":"42682","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"41424":{"*":{"id":"10291","name":"*","chunks":[],"async":false}},"43739":{"*":{"id":"79805","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"30658","name":"*","chunks":[],"async":false}},"57182":{"*":{"id":"39396","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"74774","name":"*","chunks":[],"async":false}},"64357":{"*":{"id":"71642","name":"*","chunks":[],"async":false}},"66636":{"*":{"id":"22850","name":"*","chunks":[],"async":false}},"74687":{"*":{"id":"93543","name":"*","chunks":[],"async":false}},"74902":{"*":{"id":"90589","name":"*","chunks":[],"async":false}},"76122":{"*":{"id":"52846","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"85931":{"*":{"id":"73279","name":"*","chunks":[],"async":false}},"89992":{"*":{"id":"23492","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"90357":{"*":{"id":"7841","name":"*","chunks":[],"async":false}},"90663":{"*":{"id":"25619","name":"*","chunks":[],"async":false}},"94244":{"*":{"id":"62459","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"47569","name":"*","chunks":[],"async":false}},"98173":{"*":{"id":"56962","name":"*","chunks":[],"async":false}},"98235":{"*":{"id":"33441","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/client-page.js":{"id":41012,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/client-page.js":{"id":41012,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/client-segment.js":{"id":10540,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/client-segment.js":{"id":10540,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/layout-router.js":{"id":85341,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/layout-router.js":{"id":85341,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":94777,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":94777,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/client/components/render-from-template-context.js":{"id":90025,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":90025,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/lib/framework/boundary-components.js":{"id":15104,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":15104,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":36505,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":36505,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/global-error.tsx":{"id":66636,"name":"*","chunks":["4219","static/chunks/app/global-error-c894441824fc03d1.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/error.tsx":{"id":2510,"name":"*","chunks":["8039","static/chunks/app/error-4ec2f52abc66bc6c.js"],"async":false},"/home/runner/work/semiont/semiont/packages/react-ui/dist/index.mjs":{"id":47001,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/globals.css":{"id":8761,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/providers.tsx":{"id":7394,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/components/ClientModals.tsx":{"id":74687,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/components/CookieBanner.tsx":{"id":13395,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/styles/animations.css":{"id":51885,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next-intl/dist/esm/production/navigation/shared/BaseLink.js":{"id":30634,"name":"*","chunks":["6089","static/chunks/app/%5Blocale%5D/admin/page-fc5e1da86912c64f.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next-intl/dist/esm/production/shared/NextIntlClientProvider.js":{"id":60174,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/font/google/target.css?{\"path\":\"src/app/[locale]/layout.tsx\",\"import\":\"Inter\",\"arguments\":[{\"subsets\":[\"latin\"]}],\"variableName\":\"inter\"}":{"id":91790,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/node_modules/next/font/google/target.css?{\"path\":\"src/app/[locale]/layout.tsx\",\"import\":\"Orbitron\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-orbitron\"}],\"variableName\":\"orbitron\"}":{"id":29719,"name":"*","chunks":["8450","static/chunks/app/%5Blocale%5D/layout-2f6c82f89ff0fb38.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/not-found.tsx":{"id":98235,"name":"*","chunks":["3224","static/chunks/app/%5Blocale%5D/not-found-9338290efe925a85.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/about/page.tsx":{"id":43739,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/error/page.tsx":{"id":32033,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/signin/page.tsx":{"id":76122,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/signup/page.tsx":{"id":98173,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/auth/welcome/page.tsx":{"id":57182,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/page.tsx":{"id":90357,"name":"*","chunks":["465","static/chunks/app/%5Blocale%5D/page-46fad01f54cffcaf.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/privacy/page.tsx":{"id":90663,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/terms/page.tsx":{"id":25984,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/layout.tsx":{"id":26349,"name":"*","chunks":["4490","static/chunks/app/%5Blocale%5D/admin/layout-62ef934e6bcc18b1.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/devops/page.tsx":{"id":20108,"name":"*","chunks":["6043","static/chunks/app/%5Blocale%5D/admin/devops/page-da9614b9f1606d7b.js"],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/security/client.tsx":{"id":33747,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/layout.tsx":{"id":14922,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/compose/page.tsx":{"id":85931,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/discover/page.tsx":{"id":15317,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/users/client.tsx":{"id":89992,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/page.tsx":{"id":27246,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/layout.tsx":{"id":64357,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/entity-tags/page.tsx":{"id":74902,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/know/resource/[id]/page.tsx":{"id":94244,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/page.tsx":{"id":23772,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/recent/page.tsx":{"id":41424,"name":"*","chunks":[],"async":false},"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/moderate/tag-schemas/page.tsx":{"id":14833,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/runner/work/semiont/semiont/apps/frontend/src/":[{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/global-error":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/not-found":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/layout":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/error":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/layout":[{"inlined":false,"path":"static/css/3f5226338fdd5e06.css"},{"inlined":false,"path":"static/css/081bb8fb6df14532.css"},{"inlined":false,"path":"static/css/35f4d55fe336a086.css"},{"inlined":false,"path":"static/css/23b8537fef38b0e6.css"},{"inlined":false,"path":"static/css/f7f0ede9090e5e99.css"},{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"},{"inlined":false,"path":"static/css/657e03e50dc00ae1.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/not-found":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/page":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/layout":[{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"}],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/page":[],"/home/runner/work/semiont/semiont/apps/frontend/src/app/[locale]/admin/devops/page":[{"inlined":false,"path":"static/css/9ed9607bad31b45e.css"}]},"rscModuleMapping":{"2510":{"*":{"id":"26412","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"49743","name":"*","chunks":[],"async":false}},"7394":{"*":{"id":"34664","name":"*","chunks":[],"async":false}},"8761":{"*":{"id":"14276","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"88248","name":"*","chunks":[],"async":false}},"13395":{"*":{"id":"44861","name":"*","chunks":[],"async":false}},"14833":{"*":{"id":"78474","name":"*","chunks":[],"async":false}},"14922":{"*":{"id":"91305","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"95094","name":"*","chunks":[],"async":false}},"15317":{"*":{"id":"70830","name":"*","chunks":[],"async":false}},"20108":{"*":{"id":"67736","name":"*","chunks":[],"async":false}},"23772":{"*":{"id":"67256","name":"*","chunks":[],"async":false}},"25984":{"*":{"id":"31374","name":"*","chunks":[],"async":false}},"26349":{"*":{"id":"31805","name":"*","chunks":[],"async":false}},"27246":{"*":{"id":"69150","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5314","name":"*","chunks":[],"async":false}},"32033":{"*":{"id":"70262","name":"*","chunks":[],"async":false}},"33747":{"*":{"id":"67211","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"67487","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"56542","name":"*","chunks":[],"async":false}},"41424":{"*":{"id":"71144","name":"*","chunks":[],"async":false}},"43739":{"*":{"id":"6900","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"61345","name":"*","chunks":[],"async":false}},"51885":{"*":{"id":"50112","name":"*","chunks":[],"async":false}},"57182":{"*":{"id":"77792","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"69980","name":"*","chunks":[],"async":false}},"64357":{"*":{"id":"75555","name":"*","chunks":[],"async":false}},"66636":{"*":{"id":"90488","name":"*","chunks":[],"async":false}},"74687":{"*":{"id":"57474","name":"*","chunks":[],"async":false}},"74902":{"*":{"id":"19948","name":"*","chunks":[],"async":false}},"76122":{"*":{"id":"13536","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"96231","name":"*","chunks":[],"async":false}},"85931":{"*":{"id":"76453","name":"*","chunks":[],"async":false}},"89992":{"*":{"id":"82365","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"72041","name":"*","chunks":[],"async":false}},"90357":{"*":{"id":"8650","name":"*","chunks":[],"async":false}},"90663":{"*":{"id":"98541","name":"*","chunks":[],"async":false}},"94244":{"*":{"id":"37103","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"10959","name":"*","chunks":[],"async":false}},"98173":{"*":{"id":"96270","name":"*","chunks":[],"async":false}},"98235":{"*":{"id":"71743","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"10540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"15104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"30634":{"*":{"id":"5600","name":"*","chunks":[],"async":false}},"36505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"41012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"47001":{"*":{"id":"30658","name":"*","chunks":[],"async":false}},"60174":{"*":{"id":"74774","name":"*","chunks":[],"async":false}},"85341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"90025":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"94777":{"*":{"id":"47569","name":"*","chunks":[],"async":false}}}}
|