BOC v1.0: RS256 auth, Ledger integration, Prometheus metrics, CI/CD, backup
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -1,101 +0,0 @@
|
||||
# BOC Frontend Refactor Proposal
|
||||
|
||||
## Problem
|
||||
12 HTML-filer (dashboard.html, crm.html, sales.html, ...) var och en med ~80 rader identisk sidebar-kod. En ändring = 12 filer att uppdatera. Risk för divergens.
|
||||
|
||||
## Alternativ
|
||||
|
||||
### A. Vanilla JS Component System (Rekommenderas)
|
||||
Ett enda HTML-skelett, JavaScript laddar modul-innehåll dynamiskt.
|
||||
|
||||
```
|
||||
web/
|
||||
index.html # Single shell: sidebar + main container
|
||||
assets/
|
||||
boc.js # Router + auth + API
|
||||
components.js # Sidebar, Header, KPI cards, Tables
|
||||
modules/
|
||||
dashboard.js # Dashboard-specific rendering
|
||||
crm.js # CRM module
|
||||
sales.js # Sales module
|
||||
...
|
||||
```
|
||||
|
||||
**Fördelar:**
|
||||
- En sidebar, en källa till sanning
|
||||
- Ingen build step (vanilla JS)
|
||||
- Fungerar med nuvarande nginx static hosting
|
||||
- ~2h att implementera
|
||||
|
||||
**Nackdelar:**
|
||||
- Ingen type safety
|
||||
- Manuell DOM-hantering
|
||||
|
||||
### B. HTMX + Go Templates
|
||||
Go backend servar HTML fragments. HTMX swappar innehåll.
|
||||
|
||||
```
|
||||
backend/templates/
|
||||
layout.html # Shell med sidebar
|
||||
dashboard.html # Fragment
|
||||
crm/
|
||||
list.html
|
||||
detail.html
|
||||
```
|
||||
|
||||
**Fördelar:**
|
||||
- Server-side rendering, SEO-vänligt
|
||||
- Minimal JS
|
||||
- Go standard library
|
||||
|
||||
**Nackdelar:**
|
||||
- Kräver template engine i backend
|
||||
- Mindre interaktivt utan extra JS
|
||||
|
||||
### C. Lit/Web Components (Modern vanilla)
|
||||
Web standard, inget framework. Lit ger reaktivitet.
|
||||
|
||||
**Fördelar:**
|
||||
- Web standard, inget build step med import maps
|
||||
- Reaktiva komponenter
|
||||
- Framtidssäkert
|
||||
|
||||
**Nackdelar:**
|
||||
- Learning curve
|
||||
- ~4h att implementera
|
||||
|
||||
### D. Full SPA (React/Vue/Svelte)
|
||||
**AVVISAS** — För tungt för adminplattform. Byggsteg, bundle size, komplexitet.
|
||||
|
||||
## Rekommendation: Alternativ A (Vanilla JS Router)
|
||||
|
||||
Snabbast att implementera, lättast att underhålla, matchar nuvarande arkitektur.
|
||||
|
||||
### Implementation (estimerad 2-3h):
|
||||
1. `index.html` — shell med sidebar + `<main id="app">`
|
||||
2. `assets/router.js` — hash-based routing (`#/crm`, `#/sales`)
|
||||
3. `assets/components.js` — `renderSidebar()`, `renderKpiGrid()`, `renderTable()`
|
||||
4. `assets/modules/*.js` — en fil per modul, exporterar `render()`
|
||||
5. Sidebar-markup i ett JSON-objekt, renderas dynamiskt
|
||||
|
||||
### Exempel:
|
||||
```js
|
||||
// router.js
|
||||
const routes = {
|
||||
'/': () => import('./modules/dashboard.js'),
|
||||
'/crm': () => import('./modules/crm.js'),
|
||||
'/sales': () => import('./modules/sales.js'),
|
||||
// ...
|
||||
};
|
||||
|
||||
window.addEventListener('hashchange', () => {
|
||||
const path = location.hash.slice(1) || '/';
|
||||
routes[path]().then(m => m.render(document.getElementById('app')));
|
||||
});
|
||||
```
|
||||
|
||||
### Migration path:
|
||||
1. Skapa shell + router
|
||||
2. Konvertera en modul (dashboard) som proof-of-concept
|
||||
3. Konvertera resten en i taget
|
||||
4. Ta bort gamla HTML-filer
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
3:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
4:"$Sreact.suspense"
|
||||
0:{"rsc":["$","$1","c",{"children":["$L2",null,["$","$L3",null,{"children":["$","$4",null,{"name":"Next.MetadataOutlet","children":"$@5"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
5:null
|
||||
2:E{"digest":"NEXT_REDIRECT;replace;/login;307;"}
|
||||
@@ -0,0 +1,18 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
6:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
b:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
d:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":["$L5",null,["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],{},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$L9",null,{"children":"$La"}],["$","div",null,{"hidden":true,"children":["$","$Lb",null,{"children":["$","$7",null,{"name":"Next.Metadata","children":"$Lc"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$d",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
5:E{"digest":"NEXT_REDIRECT;replace;/login;307;"}
|
||||
a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
e:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
8:null
|
||||
c:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$Le","3",{}]]
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
3:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
4:"$Sreact.suspense"
|
||||
5:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}},"staleTime":300,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,8550,(e,r,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"warnOnce",{enumerable:!0,get:function(){return n}});let n=e=>{}},29843,(e,r,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n={DecodeError:function(){return P},MiddlewareNotFoundError:function(){return O},MissingStaticPage:function(){return h},NormalizeError:function(){return E},PageNotFoundError:function(){return b},SP:function(){return m},ST:function(){return y},WEB_VITALS:function(){return i},execOnce:function(){return u},getDisplayName:function(){return l},getLocationOrigin:function(){return c},getURL:function(){return f},isAbsoluteUrl:function(){return a},isResSent:function(){return d},loadGetInitialProps:function(){return g},normalizeRepeatedSlashes:function(){return p},stringifyError:function(){return N}};for(var o in n)Object.defineProperty(t,o,{enumerable:!0,get:n[o]});let i=["CLS","FCP","FID","INP","LCP","TTFB"];function u(e){let r,t=!1;return(...n)=>(t||(t=!0,r=e(...n)),r)}let s=/^[a-zA-Z][a-zA-Z\d+\-.]*?:/,a=e=>s.test(e);function c(){let{protocol:e,hostname:r,port:t}=window.location;return`${e}//${r}${t?":"+t:""}`}function f(){let{href:e}=window.location,r=c();return e.substring(r.length)}function l(e){return"string"==typeof e?e:e.displayName||e.name||"Unknown"}function d(e){return e.finished||e.headersSent}function p(e){let r=e.split("?");return r[0].replace(/\\/g,"/").replace(/\/\/+/g,"/")+(r[1]?`?${r.slice(1).join("?")}`:"")}async function g(e,r){let t=r.res||r.ctx&&r.ctx.res;if(!e.getInitialProps)return r.ctx&&r.Component?{pageProps:await g(r.Component,r.ctx)}:{};let n=await e.getInitialProps(r);if(t&&d(t))return n;if(!n)throw Object.defineProperty(Error(`"${l(e)}.getInitialProps()" should resolve to an object. But found "${n}" instead.`),"__NEXT_ERROR_CODE",{value:"E1025",enumerable:!1,configurable:!0});return n}let m="u">typeof performance,y=m&&["mark","measure","getEntriesByName"].every(e=>"function"==typeof performance[e]);class P extends Error{}class E extends Error{}class b extends Error{constructor(e){super(),this.code="ENOENT",this.name="PageNotFoundError",this.message=`Cannot find module for page: ${e}`}}class h extends Error{constructor(e,r){super(),this.message=`Failed to load static file for page: ${e} ${r}`}}class O extends Error{constructor(){super(),this.code="ENOENT",this.message="Cannot find the middleware module"}}function N(e){return JSON.stringify({message:e.message,stack:e.stack})}},27245,(e,r,t)=>{"use strict";Object.defineProperty(t,"__esModule",{value:!0});var n={assign:function(){return a},searchParamsToUrlQuery:function(){return i},urlQueryToSearchParams:function(){return s}};for(var o in n)Object.defineProperty(t,o,{enumerable:!0,get:n[o]});function i(e){let r={};for(let[t,n]of e.entries()){let e=r[t];void 0===e?r[t]=n:Array.isArray(e)?e.push(n):r[t]=[e,n]}return r}function u(e){return"string"==typeof e?e:("number"!=typeof e||isNaN(e))&&"boolean"!=typeof e?"":String(e)}function s(e){let r=new URLSearchParams;for(let[t,n]of Object.entries(e))if(Array.isArray(n))for(let e of n)r.append(t,u(e));else r.set(t,u(n));return r}function a(e,...r){for(let t of r){for(let r of t.keys())e.delete(r);for(let[r,n]of t.entries())e.append(r,n)}return e}}]);
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,143,e=>{"use strict";async function t(e,a={}){let n=localStorage.getItem("amos_token"),s=await fetch(`/api/v1${e}`,{...a,headers:{"Content-Type":"application/json",...n?{Authorization:`Bearer ${n}`}:{},...a.headers}});if(!s.ok)throw Error((await s.json().catch(()=>({}))).error||`HTTP ${s.status}`);return s.json()}e.s(["api",0,{auth:{login:(e,a)=>t("/auth/login",{method:"POST",body:JSON.stringify({email:e,password:a})}),me:()=>t("/auth/me")},crm:{customers:()=>t("/crm/customers")},sales:{deals:()=>t("/sales/deals")},finance:{balance:()=>t("/finance/balance"),accounts:()=>t("/finance/accounts")},hr:{employees:()=>t("/hr/employees")},legal:{contracts:()=>t("/legal/contracts")}}])},93370,e=>{"use strict";var t=e.i(1624),a=e.i(30573);e.s(["Skeleton",0,function({className:e,...n}){return(0,t.jsx)("div",{"data-slot":"skeleton",className:(0,a.cn)("animate-pulse rounded-md bg-muted",e),...n})}])},1570,28939,e=>{"use strict";var t=e.i(64828);let a=(0,t.default)("trending-down",[["path",{d:"M16 17h6v-6",key:"t6n2it"}],["path",{d:"m22 17-8.5-8.5-5 5L2 7",key:"x473p"}]]);e.s(["TrendingDown",0,a],1570);let n=(0,t.default)("wallet",[["path",{d:"M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1",key:"18etb6"}],["path",{d:"M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4",key:"xoc0q4"}]]);e.s(["Wallet",0,n],28939)}]);
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
(globalThis.TURBOPACK||(globalThis.TURBOPACK=[])).push(["object"==typeof document?document.currentScript:void 0,84717,e=>{"use strict";let t=(0,e.i(64828).default)("shield",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}]]);e.s(["Shield",0,t],84717)},45665,21806,e=>{"use strict";var t=e.i(1624),r=e.i(30573);e.s(["Label",0,function({className:e,...a}){return(0,t.jsx)("label",{"data-slot":"label",className:(0,r.cn)("flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50",e),...a})}],45665),e.i(59217);var a=e.i(62714),i=e.i(51385),n=e.i(46392);let d=a.forwardRef(function(e,t){let{render:r,className:a,disabled:d=!1,focusableWhenDisabled:o=!1,nativeButton:s=!0,style:u,...l}=e,{getButtonProps:c,buttonRef:g}=(0,i.useButton)({disabled:d,focusableWhenDisabled:o,native:s});return(0,n.useRenderElement)("button",e,{state:{disabled:d},ref:[t,g],props:[l,c]})}),o=(0,e.i(54044).cva)("group/button inline-flex shrink-0 items-center justify-center rounded-lg border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4",{variants:{variant:{default:"bg-primary text-primary-foreground hover:bg-primary/80",outline:"border-border bg-background hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:border-input dark:bg-input/30 dark:hover:bg-input/50",secondary:"bg-secondary text-secondary-foreground hover:bg-[color-mix(in_oklch,var(--secondary),var(--foreground)_5%)] aria-expanded:bg-secondary aria-expanded:text-secondary-foreground",ghost:"hover:bg-muted hover:text-foreground aria-expanded:bg-muted aria-expanded:text-foreground dark:hover:bg-muted/50",destructive:"bg-destructive/10 text-destructive hover:bg-destructive/20 focus-visible:border-destructive/40 focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:hover:bg-destructive/30 dark:focus-visible:ring-destructive/40",link:"text-primary underline-offset-4 hover:underline"},size:{default:"h-8 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2",xs:"h-6 gap-1 rounded-[min(var(--radius-md),10px)] px-2 text-xs in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3",sm:"h-7 gap-1 rounded-[min(var(--radius-md),12px)] px-2.5 text-[0.8rem] in-data-[slot=button-group]:rounded-lg has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 [&_svg:not([class*='size-'])]:size-3.5",lg:"h-9 gap-1.5 px-2.5 has-data-[icon=inline-end]:pr-2 has-data-[icon=inline-start]:pl-2",icon:"size-8","icon-xs":"size-6 rounded-[min(var(--radius-md),10px)] in-data-[slot=button-group]:rounded-lg [&_svg:not([class*='size-'])]:size-3","icon-sm":"size-7 rounded-[min(var(--radius-md),12px)] in-data-[slot=button-group]:rounded-lg","icon-lg":"size-9"}},defaultVariants:{variant:"default",size:"default"}});e.s(["Button",0,function({className:e,variant:a="default",size:i="default",...n}){return(0,t.jsx)(d,{"data-slot":"button",className:(0,r.cn)(o({variant:a,size:i,className:e})),...n})}],21806)}]);
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,11 @@
|
||||
self.__BUILD_MANIFEST = {
|
||||
"__rewrites": {
|
||||
"afterFiles": [],
|
||||
"beforeFiles": [],
|
||||
"fallback": []
|
||||
},
|
||||
"sortedPages": [
|
||||
"/_app",
|
||||
"/_error"
|
||||
]
|
||||
};self.__BUILD_MANIFEST_CB && self.__BUILD_MANIFEST_CB()
|
||||
@@ -0,0 +1 @@
|
||||
self.__MIDDLEWARE_MATCHERS = [];self.__MIDDLEWARE_MATCHERS_CB && self.__MIDDLEWARE_MATCHERS_CB()
|
||||
@@ -0,0 +1 @@
|
||||
self.__SSG_MANIFEST=new Set([]);self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
Binary file not shown.
File diff suppressed because one or more lines are too long
@@ -0,0 +1,17 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
6:"$Sreact.suspense"
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
b:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
d:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
0:{"P":null,"c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L5",null,{"children":["$","$6",null,{"name":"Next.MetadataOutlet","children":"$@7"}]}]]}],{},null,false,null]},null,false,"$@8"]},null,false,null],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L9",null,{"children":"$La"}],["$","div",null,{"hidden":true,"children":["$","$Lb",null,{"children":["$","$6",null,{"name":"Next.Metadata","children":"$Lc"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$d",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
e:[]
|
||||
8:"$We"
|
||||
a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
f:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
7:null
|
||||
c:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$Lf","3",{}]]
|
||||
@@ -0,0 +1,17 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
6:"$Sreact.suspense"
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
b:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
d:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
0:{"P":null,"c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:style","children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style","children":404}],["$","div",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style","children":["$","h2",null,{"style":"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style","children":"This page could not be found."}]}]]}]}]],null,["$","$L5",null,{"children":["$","$6",null,{"name":"Next.MetadataOutlet","children":"$@7"}]}]]}],{},null,false,null]},null,false,"$@8"]},null,false,null],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L9",null,{"children":"$La"}],["$","div",null,{"hidden":true,"children":["$","$Lb",null,{"children":["$","$6",null,{"name":"Next.Metadata","children":"$Lc"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$d",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
e:[]
|
||||
8:"$We"
|
||||
a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
f:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
7:null
|
||||
c:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$Lf","3",{}]]
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
3:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
4:"$Sreact.suspense"
|
||||
5:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
0:{"rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,5 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
3:"$Sreact.suspense"
|
||||
0:{"rsc":["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
4:null
|
||||
@@ -0,0 +1,5 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:[]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,2 @@
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"/_not-found","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -1,141 +0,0 @@
|
||||
// BOC — Business Operations Center
|
||||
// Single-page app shell. One sidebar, dynamic modules.
|
||||
// Linus principle: write it once, route everything through it.
|
||||
|
||||
const API_BASE = '/api/v1';
|
||||
|
||||
// Module registry — add new modules here
|
||||
const modules = {
|
||||
'/': () => import('./modules/dashboard.js'),
|
||||
'/crm': () => import('./modules/crm.js'),
|
||||
'/sales': () => import('./modules/sales.js'),
|
||||
'/finance': () => import('./modules/finance.js'),
|
||||
'/hr': () => import('./modules/hr.js'),
|
||||
'/legal': () => import('./modules/legal.js'),
|
||||
'/marketing': () => import('./modules/marketing.js'),
|
||||
'/support': () => import('./modules/support.js'),
|
||||
'/automation': () => import('./modules/automation.js'),
|
||||
};
|
||||
|
||||
// Sidebar configuration — one source of truth
|
||||
const sidebarItems = [
|
||||
{ path: '/', label: 'Dashboard', icon: 'grid' },
|
||||
{ path: '/crm', label: 'CRM', icon: 'users' },
|
||||
{ path: '/sales', label: 'Sales', icon: 'dollar' },
|
||||
{ path: '/finance', label: 'Finance', icon: 'bar-chart' },
|
||||
{ path: '/hr', label: 'HR', icon: 'user' },
|
||||
{ path: '/legal', label: 'Legal', icon: 'file-text' },
|
||||
{ path: '/marketing', label: 'Marketing', icon: 'megaphone' },
|
||||
{ path: '/support', label: 'Support', icon: 'help-circle' },
|
||||
{ path: '/automation', label: 'Automation', icon: 'zap' },
|
||||
];
|
||||
|
||||
// Auth utilities
|
||||
function getToken() { return localStorage.getItem('boc_token'); }
|
||||
function getUser() {
|
||||
const u = localStorage.getItem('boc_user');
|
||||
return u ? JSON.parse(u) : null;
|
||||
}
|
||||
|
||||
function apiRequest(endpoint, options = {}) {
|
||||
const token = getToken();
|
||||
const url = endpoint.startsWith('http') ? endpoint : `${API_BASE}${endpoint}`;
|
||||
return fetch(url, {
|
||||
...options,
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'Authorization': `Bearer ${token}`,
|
||||
...options.headers
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Router
|
||||
async function navigate(path) {
|
||||
const app = document.getElementById('app');
|
||||
const loader = modules[path] || modules['/'];
|
||||
|
||||
try {
|
||||
const mod = await loader();
|
||||
app.innerHTML = '';
|
||||
await mod.render(app);
|
||||
updateActiveNav(path);
|
||||
} catch (err) {
|
||||
app.innerHTML = `<div class="alert alert-error">Failed to load module: ${err.message}</div>`;
|
||||
}
|
||||
}
|
||||
|
||||
function updateActiveNav(path) {
|
||||
document.querySelectorAll('.sidebar-nav a').forEach(a => {
|
||||
a.classList.toggle('active', a.getAttribute('href') === '#' + path);
|
||||
});
|
||||
}
|
||||
|
||||
// Sidebar renderer
|
||||
function renderSidebar() {
|
||||
const sidebar = document.getElementById('sidebar');
|
||||
const user = getUser();
|
||||
|
||||
sidebar.innerHTML = `
|
||||
<div class="sidebar-logo">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
|
||||
<rect x="2" y="7" width="20" height="14" rx="2"/>
|
||||
<path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"/>
|
||||
</svg>
|
||||
<span>BOC</span>
|
||||
</div>
|
||||
<nav class="sidebar-nav">
|
||||
${sidebarItems.map(item => `
|
||||
<a href="#${item.path}" data-path="${item.path}">
|
||||
<span>${item.label}</span>
|
||||
</a>
|
||||
`).join('')}
|
||||
</nav>
|
||||
<div class="sidebar-footer">
|
||||
<span>${user?.email || 'guest'}</span>
|
||||
<button onclick="logout()">Logga ut</button>
|
||||
</div>
|
||||
`;
|
||||
|
||||
sidebar.querySelectorAll('a').forEach(a => {
|
||||
a.addEventListener('click', (e) => {
|
||||
e.preventDefault();
|
||||
const path = a.getAttribute('data-path');
|
||||
location.hash = path;
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function logout() {
|
||||
localStorage.removeItem('boc_token');
|
||||
localStorage.removeItem('boc_user');
|
||||
location.href = '/login.html';
|
||||
}
|
||||
|
||||
// Auth check
|
||||
function requireAuth() {
|
||||
if (!getToken()) {
|
||||
location.href = '/login.html';
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
// Init
|
||||
window.addEventListener('DOMContentLoaded', () => {
|
||||
if (!requireAuth()) return;
|
||||
renderSidebar();
|
||||
|
||||
const path = location.hash.slice(1) || '/';
|
||||
navigate(path);
|
||||
});
|
||||
|
||||
window.addEventListener('hashchange', () => {
|
||||
const path = location.hash.slice(1) || '/';
|
||||
navigate(path);
|
||||
});
|
||||
|
||||
// Export for modules
|
||||
window.apiRequest = apiRequest;
|
||||
window.getToken = getToken;
|
||||
window.getUser = getUser;
|
||||
@@ -1,867 +0,0 @@
|
||||
/* ============================================
|
||||
BOC — Business Operations Center
|
||||
Enterprise Design System
|
||||
============================================ */
|
||||
|
||||
:root {
|
||||
/* Brand — Landvex Blue */
|
||||
--brand: #0066FF;
|
||||
--brand-dark: #0052CC;
|
||||
--brand-light: #4D94FF;
|
||||
--brand-glow: rgba(0, 102, 255, 0.15);
|
||||
|
||||
/* Neutral Scale */
|
||||
--neutral-0: #ffffff;
|
||||
--neutral-50: #f8f9fa;
|
||||
--neutral-100: #f1f3f5;
|
||||
--neutral-200: #e9ecef;
|
||||
--neutral-300: #dee2e6;
|
||||
--neutral-400: #ced4da;
|
||||
--neutral-500: #adb5bd;
|
||||
--neutral-600: #868e96;
|
||||
--neutral-700: #495057;
|
||||
--neutral-800: #343a40;
|
||||
--neutral-900: #212529;
|
||||
--neutral-1000: #0f172a;
|
||||
|
||||
/* Semantic */
|
||||
--success: #40c057;
|
||||
--warning: #fcc419;
|
||||
--danger: #fa5252;
|
||||
--info: #339af0;
|
||||
|
||||
/* Surfaces */
|
||||
--bg: #f5f5f7;
|
||||
--surface: #ffffff;
|
||||
--surface-hover: #f8f9fa;
|
||||
--sidebar-bg: #0f172a;
|
||||
|
||||
/* Text */
|
||||
--text: #1d1d1f;
|
||||
--text-secondary: #6B6B6B;
|
||||
--text-muted: #868e96;
|
||||
--text-inverse: #ffffff;
|
||||
|
||||
/* Borders */
|
||||
--border: rgba(0,0,0,0.08);
|
||||
--border-strong: #e9ecef;
|
||||
|
||||
/* Spacing */
|
||||
--space-xs: 4px;
|
||||
--space-sm: 8px;
|
||||
--space-md: 16px;
|
||||
--space-lg: 24px;
|
||||
--space-xl: 32px;
|
||||
--space-2xl: 48px;
|
||||
|
||||
/* Radius */
|
||||
--radius-sm: 8px;
|
||||
--radius-md: 14px;
|
||||
--radius-lg: 24px;
|
||||
|
||||
/* Shadows */
|
||||
--shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
|
||||
--shadow-md: 0 2px 8px rgba(0,0,0,0.06);
|
||||
--shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
|
||||
|
||||
/* Typography */
|
||||
--font-sans: -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', sans-serif;
|
||||
--font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: var(--font-sans);
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
line-height: 1.5;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
LOGIN PAGE
|
||||
============================================ */
|
||||
|
||||
.login-container {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: var(--bg);
|
||||
}
|
||||
|
||||
.login-box {
|
||||
background: var(--surface);
|
||||
padding: 48px;
|
||||
border-radius: var(--radius-lg);
|
||||
box-shadow: var(--shadow-lg);
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
}
|
||||
|
||||
.login-logo {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
background: var(--brand);
|
||||
border-radius: var(--radius-md);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.login-logo svg {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.login-box h1 {
|
||||
font-size: 24px;
|
||||
font-weight: 600;
|
||||
color: var(--text);
|
||||
margin-bottom: 8px;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
.login-box .subtitle {
|
||||
font-size: 14px;
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
.form-group {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.form-group label {
|
||||
display: block;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
color: var(--text);
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.form-group input,
|
||||
.form-group select,
|
||||
.form-group textarea {
|
||||
width: 100%;
|
||||
padding: 12px 16px;
|
||||
border: 1px solid var(--border-strong);
|
||||
border-radius: var(--radius-md);
|
||||
font-size: 15px;
|
||||
font-family: var(--font-sans);
|
||||
color: var(--text);
|
||||
background: var(--surface);
|
||||
transition: border-color 0.15s, box-shadow 0.15s;
|
||||
}
|
||||
|
||||
.form-group input:focus,
|
||||
.form-group select:focus,
|
||||
.form-group textarea:focus {
|
||||
outline: none;
|
||||
border-color: var(--brand);
|
||||
box-shadow: 0 0 0 3px var(--brand-glow);
|
||||
}
|
||||
|
||||
.form-group input::placeholder,
|
||||
.form-group textarea::placeholder {
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
width: 100%;
|
||||
padding: 14px;
|
||||
background: var(--brand);
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: var(--radius-md);
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
font-family: var(--font-sans);
|
||||
cursor: pointer;
|
||||
transition: background 0.15s, transform 0.1s;
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
background: var(--brand-dark);
|
||||
}
|
||||
|
||||
.btn-primary:active {
|
||||
transform: scale(0.98);
|
||||
}
|
||||
|
||||
.btn-primary:disabled {
|
||||
opacity: 0.6;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.login-footer {
|
||||
margin-top: 32px;
|
||||
padding-top: 24px;
|
||||
border-top: 1px solid var(--border);
|
||||
font-size: 13px;
|
||||
color: var(--text-muted);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.login-footer a {
|
||||
color: var(--brand);
|
||||
text-decoration: none;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.error-msg {
|
||||
background: #fff5f5;
|
||||
color: var(--danger);
|
||||
padding: 12px 16px;
|
||||
border-radius: var(--radius-md);
|
||||
margin-bottom: 20px;
|
||||
font-size: 14px;
|
||||
border: 1px solid rgba(250, 82, 82, 0.2);
|
||||
display: none;
|
||||
}
|
||||
|
||||
.error-msg.show {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
APP LAYOUT
|
||||
============================================ */
|
||||
|
||||
.app {
|
||||
display: flex;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
/* Sidebar */
|
||||
.sidebar {
|
||||
width: 240px;
|
||||
background: var(--sidebar-bg);
|
||||
color: var(--text-inverse);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: fixed;
|
||||
height: 100vh;
|
||||
left: 0;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.sidebar-logo {
|
||||
padding: 24px;
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
letter-spacing: -0.02em;
|
||||
border-bottom: 1px solid rgba(255,255,255,0.08);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.sidebar-logo svg {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
color: var(--brand);
|
||||
}
|
||||
|
||||
.sidebar-nav {
|
||||
flex: 1;
|
||||
padding: 16px 12px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.sidebar-nav a {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
padding: 10px 16px;
|
||||
border-radius: var(--radius-sm);
|
||||
color: rgba(255,255,255,0.6);
|
||||
text-decoration: none;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
transition: all 0.15s;
|
||||
}
|
||||
|
||||
.sidebar-nav a:hover {
|
||||
background: rgba(255,255,255,0.06);
|
||||
color: rgba(255,255,255,0.9);
|
||||
}
|
||||
|
||||
.sidebar-nav a.active {
|
||||
background: var(--brand);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.sidebar-nav svg {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.sidebar-nav a.active svg {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.sidebar-footer {
|
||||
padding: 16px;
|
||||
border-top: 1px solid rgba(255,255,255,0.08);
|
||||
font-size: 13px;
|
||||
color: rgba(255,255,255,0.4);
|
||||
}
|
||||
|
||||
.sidebar-footer button {
|
||||
width: 100%;
|
||||
margin-top: 12px;
|
||||
padding: 8px;
|
||||
background: rgba(255,255,255,0.06);
|
||||
border: 1px solid rgba(255,255,255,0.1);
|
||||
border-radius: var(--radius-sm);
|
||||
color: rgba(255,255,255,0.6);
|
||||
font-size: 13px;
|
||||
cursor: pointer;
|
||||
transition: all 0.15s;
|
||||
}
|
||||
|
||||
.sidebar-footer button:hover {
|
||||
background: rgba(255,255,255,0.1);
|
||||
}
|
||||
|
||||
/* Main Content */
|
||||
.main {
|
||||
flex: 1;
|
||||
margin-left: 240px;
|
||||
padding: 32px;
|
||||
max-width: 1400px;
|
||||
}
|
||||
|
||||
.module-header {
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
.module-header h1 {
|
||||
font-size: 30px;
|
||||
font-weight: 600;
|
||||
letter-spacing: -0.02em;
|
||||
color: var(--text);
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.module-header .subtitle {
|
||||
font-size: 14px;
|
||||
color: var(--text-secondary);
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
KPI CARDS
|
||||
============================================ */
|
||||
|
||||
.kpi-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(6, 1fr);
|
||||
gap: 16px;
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
.kpi-card {
|
||||
background: var(--surface);
|
||||
border-radius: var(--radius-md);
|
||||
padding: 20px;
|
||||
border: 1px solid var(--border);
|
||||
cursor: pointer;
|
||||
transition: box-shadow 0.15s, transform 0.1s;
|
||||
}
|
||||
|
||||
.kpi-card:hover {
|
||||
box-shadow: var(--shadow-md);
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.kpi-icon {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: var(--radius-sm);
|
||||
background: var(--brand-glow);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.kpi-icon svg {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
color: var(--brand);
|
||||
}
|
||||
|
||||
.kpi-value {
|
||||
font-size: 24px;
|
||||
font-weight: 600;
|
||||
letter-spacing: -0.02em;
|
||||
color: var(--text);
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.kpi-label {
|
||||
font-size: 13px;
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.kpi-trend {
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.kpi-trend.up {
|
||||
color: var(--success);
|
||||
}
|
||||
|
||||
.kpi-trend.down {
|
||||
color: var(--danger);
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
PANELS
|
||||
============================================ */
|
||||
|
||||
.panel {
|
||||
background: var(--surface);
|
||||
border-radius: var(--radius-md);
|
||||
padding: 24px;
|
||||
border: 1px solid var(--border);
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.panel h3 {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
color: var(--text);
|
||||
margin-bottom: 16px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.toolbar {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.toolbar h3 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
DASHBOARD GRID
|
||||
============================================ */
|
||||
|
||||
.dashboard-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 2fr 1fr;
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
QUICK ACTIONS
|
||||
============================================ */
|
||||
|
||||
.quick-actions {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.btn-action {
|
||||
padding: 12px;
|
||||
background: var(--surface);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: var(--radius-sm);
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
color: var(--text);
|
||||
cursor: pointer;
|
||||
transition: all 0.15s;
|
||||
font-family: var(--font-sans);
|
||||
}
|
||||
|
||||
.btn-action:hover {
|
||||
background: var(--surface-hover);
|
||||
border-color: var(--brand);
|
||||
color: var(--brand);
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
ACTIVITY FEED
|
||||
============================================ */
|
||||
|
||||
.list-item {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: flex-start;
|
||||
padding: 12px 0;
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.list-item:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.list-item-main {
|
||||
font-size: 14px;
|
||||
color: var(--text);
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.list-item-meta {
|
||||
font-size: 12px;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.badge {
|
||||
padding: 4px 10px;
|
||||
border-radius: 9999px;
|
||||
font-size: 11px;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
.badge.success {
|
||||
background: rgba(64, 192, 87, 0.1);
|
||||
color: var(--success);
|
||||
}
|
||||
|
||||
.badge.warning {
|
||||
background: rgba(252, 196, 25, 0.1);
|
||||
color: #d4a017;
|
||||
}
|
||||
|
||||
.badge.danger {
|
||||
background: rgba(250, 82, 82, 0.1);
|
||||
color: var(--danger);
|
||||
}
|
||||
|
||||
.badge.info {
|
||||
background: rgba(51, 154, 240, 0.1);
|
||||
color: var(--info);
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
AUTOMATION STATUS
|
||||
============================================ */
|
||||
|
||||
.automation-grid {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.automation-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
padding: 10px 0;
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.automation-item:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.automation-indicator {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 50%;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.automation-indicator.active {
|
||||
background: var(--success);
|
||||
}
|
||||
|
||||
.automation-indicator.warning {
|
||||
background: var(--warning);
|
||||
}
|
||||
|
||||
.automation-indicator.danger {
|
||||
background: var(--danger);
|
||||
}
|
||||
|
||||
.automation-name {
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
color: var(--text);
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.automation-schedule {
|
||||
font-size: 12px;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
ALERTS
|
||||
============================================ */
|
||||
|
||||
.alert {
|
||||
padding: 16px 20px;
|
||||
border-radius: var(--radius-md);
|
||||
font-size: 14px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.alert-critical {
|
||||
background: rgba(250, 82, 82, 0.06);
|
||||
border: 1px solid rgba(250, 82, 82, 0.15);
|
||||
color: var(--danger);
|
||||
}
|
||||
|
||||
.alert-warning {
|
||||
background: rgba(252, 196, 25, 0.06);
|
||||
border: 1px solid rgba(252, 196, 25, 0.15);
|
||||
color: #d4a017;
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
LIVE INDICATOR
|
||||
============================================ */
|
||||
|
||||
#live-indicator {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
color: var(--success);
|
||||
}
|
||||
|
||||
#live-indicator::before {
|
||||
content: '';
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 50%;
|
||||
background: var(--success);
|
||||
animation: pulse 2s infinite;
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0%, 100% { opacity: 1; }
|
||||
50% { opacity: 0.4; }
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
MODAL
|
||||
============================================ */
|
||||
|
||||
.modal {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: rgba(15, 23, 42, 0.5);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 300;
|
||||
backdrop-filter: blur(4px);
|
||||
}
|
||||
|
||||
.modal-content {
|
||||
background: var(--surface);
|
||||
border-radius: var(--radius-lg);
|
||||
width: 100%;
|
||||
max-width: 480px;
|
||||
max-height: 90vh;
|
||||
overflow: auto;
|
||||
box-shadow: var(--shadow-lg);
|
||||
}
|
||||
|
||||
.modal-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 24px 24px 0;
|
||||
}
|
||||
|
||||
.modal-header h3 {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.modal-close {
|
||||
background: none;
|
||||
border: none;
|
||||
font-size: 24px;
|
||||
color: var(--text-muted);
|
||||
cursor: pointer;
|
||||
padding: 4px;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.modal-close:hover {
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.modal-body {
|
||||
padding: 24px;
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
EMPTY STATE
|
||||
============================================ */
|
||||
|
||||
.empty-state {
|
||||
text-align: center;
|
||||
padding: 48px 24px;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.empty-state-icon {
|
||||
font-size: 32px;
|
||||
margin-bottom: 12px;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
LOADING
|
||||
============================================ */
|
||||
|
||||
.loading {
|
||||
text-align: center;
|
||||
padding: 24px;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.spinner {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
border: 2px solid var(--border-strong);
|
||||
border-top-color: var(--brand);
|
||||
border-radius: 50%;
|
||||
animation: spin 0.8s linear infinite;
|
||||
margin: 0 auto 12px;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
RESPONSIVE
|
||||
============================================ */
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
.kpi-grid {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
.dashboard-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.sidebar {
|
||||
width: 100%;
|
||||
transform: translateX(-100%);
|
||||
transition: transform 0.3s;
|
||||
}
|
||||
.sidebar.open {
|
||||
transform: translateX(0);
|
||||
}
|
||||
.main {
|
||||
margin-left: 0;
|
||||
padding: 16px;
|
||||
}
|
||||
.kpi-grid {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
.quick-actions {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
TABLES
|
||||
============================================ */
|
||||
|
||||
.data-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.data-table th {
|
||||
text-align: left;
|
||||
padding: 12px 16px;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
color: var(--text-muted);
|
||||
border-bottom: 1px solid var(--border);
|
||||
background: var(--neutral-50);
|
||||
}
|
||||
|
||||
.data-table td {
|
||||
padding: 12px 16px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.data-table tr:hover td {
|
||||
background: var(--surface-hover);
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
BUTTONS
|
||||
============================================ */
|
||||
|
||||
.btn-link {
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
color: var(--brand);
|
||||
text-decoration: none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.btn-link:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* ============================================
|
||||
SCROLLBAR
|
||||
============================================ */
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: var(--neutral-300);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: var(--neutral-400);
|
||||
}
|
||||
@@ -1,94 +0,0 @@
|
||||
// BOC — Business Operations Center
|
||||
// Shared JavaScript utilities
|
||||
|
||||
const API_BASE = '/api/v1';
|
||||
|
||||
function getToken() {
|
||||
return localStorage.getItem('boc_token');
|
||||
}
|
||||
|
||||
function getUser() {
|
||||
const user = localStorage.getItem('boc_user');
|
||||
return user ? JSON.parse(user) : null;
|
||||
}
|
||||
|
||||
function apiRequest(endpoint, options = {}) {
|
||||
const token = getToken();
|
||||
const url = endpoint.startsWith('http') ? endpoint : `${API_BASE}${endpoint}`;
|
||||
|
||||
return fetch(url, {
|
||||
...options,
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
'Authorization': `Bearer ${token}`,
|
||||
...options.headers
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function formatCurrency(value, currency = 'USD') {
|
||||
if (value === null || value === undefined) return '—';
|
||||
return new Intl.NumberFormat('sv-SE', {
|
||||
style: 'currency',
|
||||
currency,
|
||||
maximumFractionDigits: 0
|
||||
}).format(value);
|
||||
}
|
||||
|
||||
function formatDate(date) {
|
||||
if (!date) return '-';
|
||||
return new Date(date).toLocaleDateString('sv-SE');
|
||||
}
|
||||
|
||||
function formatDateTime(date) {
|
||||
if (!date) return '-';
|
||||
return new Date(date).toLocaleString('sv-SE');
|
||||
}
|
||||
|
||||
function timeAgo(timestamp) {
|
||||
const diff = Date.now() - new Date(timestamp).getTime();
|
||||
const mins = Math.floor(diff / 60000);
|
||||
if (mins < 1) return 'nyss';
|
||||
if (mins < 60) return `${mins}m sedan`;
|
||||
const hours = Math.floor(mins / 60);
|
||||
if (hours < 24) return `${hours}h sedan`;
|
||||
const days = Math.floor(hours / 24);
|
||||
if (days < 30) return `${days}d sedan`;
|
||||
return formatDate(timestamp);
|
||||
}
|
||||
|
||||
function showToast(message, type = 'info') {
|
||||
const toast = document.createElement('div');
|
||||
toast.className = `alert alert-${type}`;
|
||||
toast.style.cssText = 'position:fixed;top:24px;right:24px;z-index:1000;max-width:400px;animation:slideIn 0.3s ease;';
|
||||
toast.textContent = message;
|
||||
document.body.appendChild(toast);
|
||||
setTimeout(() => toast.remove(), 5000);
|
||||
}
|
||||
|
||||
function confirmDelete(message) {
|
||||
return confirm(message || 'Ar du saker pa att du vill ta bort detta?');
|
||||
}
|
||||
|
||||
// Check authentication on page load
|
||||
function requireAuth() {
|
||||
if (!getToken()) {
|
||||
window.location.href = '/';
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
// Update user email in sidebar
|
||||
function updateUserInfo() {
|
||||
const user = getUser();
|
||||
const el = document.getElementById('user-email');
|
||||
if (el && user) {
|
||||
el.textContent = user.email || 'erik@landvex.com';
|
||||
}
|
||||
}
|
||||
|
||||
// Initialize on page load
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
updateUserInfo();
|
||||
});
|
||||
@@ -1,10 +0,0 @@
|
||||
// Automation module
|
||||
export async function render(container) {
|
||||
container.innerHTML = `
|
||||
<header class="module-header">
|
||||
<h1>Automation</h1>
|
||||
<p class="subtitle">Workflows och schemalagda jobb</p>
|
||||
</header>
|
||||
<p>Modulen laddas...</p>
|
||||
`;
|
||||
}
|
||||
@@ -1,41 +0,0 @@
|
||||
// CRM module
|
||||
export async function render(container) {
|
||||
container.innerHTML = `
|
||||
<header class="module-header">
|
||||
<h1>CRM</h1>
|
||||
<p class="subtitle">Kunder och leads</p>
|
||||
</header>
|
||||
<div class="toolbar">
|
||||
<button class="btn-primary" id="btn-new-customer">+ Ny kund</button>
|
||||
</div>
|
||||
<div class="table-container">
|
||||
<table class="data-table" id="customers-table">
|
||||
<thead>
|
||||
<tr><th>Namn</th><th>Företag</th><th>Status</th><th>Email</th></tr>
|
||||
</thead>
|
||||
<tbody></tbody>
|
||||
</table>
|
||||
</div>
|
||||
`;
|
||||
|
||||
try {
|
||||
const res = await apiRequest('/crm/customers');
|
||||
const data = await res.json();
|
||||
const tbody = container.querySelector('#customers-table tbody');
|
||||
|
||||
if (data.customers?.length) {
|
||||
tbody.innerHTML = data.customers.map(c => `
|
||||
<tr>
|
||||
<td>${c.name}</td>
|
||||
<td>${c.company || '-'}</td>
|
||||
<td><span class="badge badge-${c.status}">${c.status}</span></td>
|
||||
<td>${c.email || '-'}</td>
|
||||
</tr>
|
||||
`).join('');
|
||||
} else {
|
||||
tbody.innerHTML = '<tr><td colspan="4">Inga kunder hittades</td></tr>';
|
||||
}
|
||||
} catch (err) {
|
||||
container.innerHTML += `<div class="alert alert-error">Kunde inte ladda kunder: ${err.message}</div>`;
|
||||
}
|
||||
}
|
||||
@@ -1,50 +0,0 @@
|
||||
// Dashboard module — rendered dynamically into #app
|
||||
export async function render(container) {
|
||||
container.innerHTML = `
|
||||
<header class="module-header">
|
||||
<h1>Dashboard</h1>
|
||||
<p class="subtitle">Överblick över hela verksamheten</p>
|
||||
</header>
|
||||
<div class="kpi-grid">
|
||||
<div class="kpi-card">
|
||||
<div class="kpi-value" id="kpi-revenue">—</div>
|
||||
<div class="kpi-label">Månadsintäkt</div>
|
||||
</div>
|
||||
<div class="kpi-card">
|
||||
<div class="kpi-value" id="kpi-deals">—</div>
|
||||
<div class="kpi-label">Aktiva deals</div>
|
||||
</div>
|
||||
<div class="kpi-card">
|
||||
<div class="kpi-value" id="kpi-customers">—</div>
|
||||
<div class="kpi-label">Kunder</div>
|
||||
</div>
|
||||
<div class="kpi-card">
|
||||
<div class="kpi-value" id="kpi-tickets">—</div>
|
||||
<div class="kpi-label">Öppna ärenden</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="section">
|
||||
<h2>Snabbåtgärder</h2>
|
||||
<div class="quick-actions">
|
||||
<button onclick="location.hash='/crm'">+ Ny kund</button>
|
||||
<button onclick="location.hash='/sales'">+ Ny offert</button>
|
||||
<button onclick="location.hash='/finance'">+ Ny faktura</button>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
|
||||
// Load real data
|
||||
try {
|
||||
const [deals, customers, tickets] = await Promise.all([
|
||||
apiRequest('/sales/deals').then(r => r.ok ? r.json() : {deals: []}),
|
||||
apiRequest('/crm/customers').then(r => r.ok ? r.json() : {customers: []}),
|
||||
apiRequest('/support/tickets').then(r => r.ok ? r.json() : {tickets: []}),
|
||||
]);
|
||||
|
||||
document.getElementById('kpi-deals').textContent = deals.deals?.length || 0;
|
||||
document.getElementById('kpi-customers').textContent = customers.customers?.length || 0;
|
||||
document.getElementById('kpi-tickets').textContent = tickets.tickets?.length || 0;
|
||||
} catch (err) {
|
||||
console.error('Dashboard load error:', err);
|
||||
}
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
// Finance module
|
||||
export async function render(container) {
|
||||
container.innerHTML = `
|
||||
<header class="module-header">
|
||||
<h1>Finance</h1>
|
||||
<p class="subtitle">Fakturor och ekonomi</p>
|
||||
</header>
|
||||
<div class="toolbar">
|
||||
<button class="btn-primary">+ Ny faktura</button>
|
||||
</div>
|
||||
<p>Modulen laddas...</p>
|
||||
`;
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
// HR module
|
||||
export async function render(container) {
|
||||
container.innerHTML = `
|
||||
<header class="module-header">
|
||||
<h1>HR</h1>
|
||||
<p class="subtitle">Anställda och tidrapporter</p>
|
||||
</header>
|
||||
<p>Modulen laddas...</p>
|
||||
`;
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
// Legal module
|
||||
export async function render(container) {
|
||||
container.innerHTML = `
|
||||
<header class="module-header">
|
||||
<h1>Legal</h1>
|
||||
<p class="subtitle">Kontrakt och påminnelser</p>
|
||||
</header>
|
||||
<p>Modulen laddas...</p>
|
||||
`;
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
// Marketing module
|
||||
export async function render(container) {
|
||||
container.innerHTML = `
|
||||
<header class="module-header">
|
||||
<h1>Marketing</h1>
|
||||
<p class="subtitle">Kampanjer och innehåll</p>
|
||||
</header>
|
||||
<p>Modulen laddas...</p>
|
||||
`;
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
// Sales module
|
||||
export async function render(container) {
|
||||
container.innerHTML = `
|
||||
<header class="module-header">
|
||||
<h1>Sales</h1>
|
||||
<p class="subtitle">Deals och offert</p>
|
||||
</header>
|
||||
<div class="toolbar">
|
||||
<button class="btn-primary">+ Ny deal</button>
|
||||
<button class="btn-secondary">+ Ny offert</button>
|
||||
</div>
|
||||
<p>Modulen laddas...</p>
|
||||
`;
|
||||
}
|
||||
@@ -1,10 +0,0 @@
|
||||
// Support module
|
||||
export async function render(container) {
|
||||
container.innerHTML = `
|
||||
<header class="module-header">
|
||||
<h1>Support</h1>
|
||||
<p class="subtitle">Ärenden och kundtjänst</p>
|
||||
</header>
|
||||
<p>Modulen laddas...</p>
|
||||
`;
|
||||
}
|
||||
@@ -1,140 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="sv">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>BOC Automation — Business Operations Center</title>
|
||||
<link rel="stylesheet" href="assets/boc.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="app">
|
||||
<aside class="sidebar">
|
||||
<div class="sidebar-logo">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<rect x="2" y="7" width="20" height="14" rx="2" ry="2"/>
|
||||
<path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"/>
|
||||
</svg>
|
||||
<span>BOC</span>
|
||||
</div>
|
||||
<nav class="sidebar-nav">
|
||||
<a href="dashboard.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="7" height="7"/><rect x="14" y="3" width="7" height="7"/><rect x="14" y="14" width="7" height="7"/><rect x="3" y="14" width="7" height="7"/></svg>
|
||||
<span>Dashboard</span>
|
||||
</a>
|
||||
<a href="crm.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>
|
||||
<span>CRM</span>
|
||||
</a>
|
||||
<a href="sales.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="12" y1="1" x2="12" y2="23"/><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"/></svg>
|
||||
<span>Sales</span>
|
||||
</a>
|
||||
<a href="finance.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="20" x2="18" y2="10"/><line x1="12" y1="20" x2="12" y2="4"/><line x1="6" y1="20" x2="6" y2="14"/></svg>
|
||||
<span>Finance</span>
|
||||
</a>
|
||||
<a href="hr.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>
|
||||
<span>HR</span>
|
||||
</a>
|
||||
<a href="legal.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/></svg>
|
||||
<span>Legal</span>
|
||||
</a>
|
||||
<a href="marketing.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 5.08V2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v3.08"/><path d="M7 9h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V11a2 2 0 0 1 2-2z"/><path d="M7 9V5a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v4"/></svg>
|
||||
<span>Marketing</span>
|
||||
</a>
|
||||
<a href="support.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"/><line x1="12" y1="17" x2="12.01" y2="17"/></svg>
|
||||
<span>Support</span>
|
||||
</a>
|
||||
<a href="automation.html" class="active">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/></svg>
|
||||
<span>Automation</span>
|
||||
</a>
|
||||
</nav>
|
||||
<div class="sidebar-footer">
|
||||
<span id="user-email">erik@landvex.com</span>
|
||||
<button onclick="logout()">Logga ut</button>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
<main class="main">
|
||||
<header class="module-header">
|
||||
<h1>Automation</h1>
|
||||
<p class="subtitle">Automatiserade arbetsfloden</p>
|
||||
</header>
|
||||
|
||||
<div class="panel">
|
||||
<div class="toolbar">
|
||||
<h3>Jobb</h3>
|
||||
<button class="btn-primary" onclick="createJob()" style="width:auto; padding: 8px 16px;">+ Nytt jobb</button>
|
||||
</div>
|
||||
<table class="data-table" id="jobs-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Namn</th>
|
||||
<th>Typ</th>
|
||||
<th>Schema</th>
|
||||
<th>Status</th>
|
||||
<th>Senast kor</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="jobs-body">
|
||||
<tr><td colspan="5" class="loading">Laddar...</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
|
||||
<script src="assets/boc.js"></script>
|
||||
<script>
|
||||
function logout() {
|
||||
localStorage.removeItem('boc_token');
|
||||
localStorage.removeItem('boc_user');
|
||||
window.location.href = '/';
|
||||
}
|
||||
|
||||
function getToken() {
|
||||
return localStorage.getItem('boc_token');
|
||||
}
|
||||
|
||||
if (!getToken()) {
|
||||
window.location.href = '/';
|
||||
}
|
||||
|
||||
async function loadJobs() {
|
||||
try {
|
||||
const res = await fetch('/api/v1/automation/jobs', {
|
||||
headers: { 'Authorization': '***' + getToken() }
|
||||
});
|
||||
const data = await res.json();
|
||||
const tbody = document.getElementById('jobs-body');
|
||||
if (data.jobs && data.jobs.length > 0) {
|
||||
tbody.innerHTML = data.jobs.map(j => `
|
||||
<tr>
|
||||
<td>${j.name}</td>
|
||||
<td>${j.job_type || '-'}</td>
|
||||
<td>${j.schedule || '-'}</td>
|
||||
<td><span class="badge ${j.status === 'active' ? 'success' : 'warning'}">${j.status}</span></td>
|
||||
<td>${j.last_run ? new Date(j.last_run).toLocaleDateString('sv-SE') : 'Aldrig'}</td>
|
||||
</tr>
|
||||
`).join('');
|
||||
} else {
|
||||
tbody.innerHTML = '<tr><td colspan="5" class="empty-state">Inga jobb an</td></tr>';
|
||||
}
|
||||
} catch (err) {
|
||||
document.getElementById('jobs-body').innerHTML = '<tr><td colspan="5" class="error">Fel vid laddning</td></tr>';
|
||||
}
|
||||
}
|
||||
|
||||
function createJob() {
|
||||
window.location.href = '/dashboard.html';
|
||||
}
|
||||
|
||||
loadJobs();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
-141
@@ -1,141 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="sv">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>BOC CRM — Business Operations Center</title>
|
||||
<link rel="stylesheet" href="assets/boc.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="app">
|
||||
<!-- Sidebar -->
|
||||
<aside class="sidebar">
|
||||
<div class="sidebar-logo">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<rect x="2" y="7" width="20" height="14" rx="2" ry="2"/>
|
||||
<path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"/>
|
||||
</svg>
|
||||
<span>BOC</span>
|
||||
</div>
|
||||
<nav class="sidebar-nav">
|
||||
<a href="dashboard.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="7" height="7"/><rect x="14" y="3" width="7" height="7"/><rect x="14" y="14" width="7" height="7"/><rect x="3" y="14" width="7" height="7"/></svg>
|
||||
<span>Dashboard</span>
|
||||
</a>
|
||||
<a href="crm.html" class="active">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>
|
||||
<span>CRM</span>
|
||||
</a>
|
||||
<a href="sales.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="12" y1="1" x2="12" y2="23"/><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"/></svg>
|
||||
<span>Sales</span>
|
||||
</a>
|
||||
<a href="finance.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="20" x2="18" y2="10"/><line x1="12" y1="20" x2="12" y2="4"/><line x1="6" y1="20" x2="6" y2="14"/></svg>
|
||||
<span>Finance</span>
|
||||
</a>
|
||||
<a href="hr.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>
|
||||
<span>HR</span>
|
||||
</a>
|
||||
<a href="legal.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/></svg>
|
||||
<span>Legal</span>
|
||||
</a>
|
||||
<a href="marketing.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 5.08V2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v3.08"/><path d="M7 9h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V11a2 2 0 0 1 2-2z"/><path d="M7 9V5a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v4"/></svg>
|
||||
<span>Marketing</span>
|
||||
</a>
|
||||
<a href="support.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"/><line x1="12" y1="17" x2="12.01" y2="17"/></svg>
|
||||
<span>Support</span>
|
||||
</a>
|
||||
<a href="automation.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/></svg>
|
||||
<span>Automation</span>
|
||||
</a>
|
||||
</nav>
|
||||
<div class="sidebar-footer">
|
||||
<span id="user-email">erik@landvex.com</span>
|
||||
<button onclick="logout()">Logga ut</button>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
<main class="main">
|
||||
<header class="module-header">
|
||||
<h1>CRM</h1>
|
||||
<p class="subtitle">Kunder och kontakter</p>
|
||||
</header>
|
||||
|
||||
<div class="panel">
|
||||
<div class="toolbar">
|
||||
<h3>Kunder</h3>
|
||||
<button class="btn-primary" onclick="createCustomer()" style="width:auto; padding: 8px 16px;">+ Ny kund</button>
|
||||
</div>
|
||||
<table class="data-table" id="customers-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Namn</th>
|
||||
<th>E-post</th>
|
||||
<th>Telefon</th>
|
||||
<th>Status</th>
|
||||
<th>Skapad</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="customers-body">
|
||||
<tr><td colspan="5" class="loading">Laddar...</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
|
||||
<script src="assets/boc.js"></script>
|
||||
<script>
|
||||
function logout() {
|
||||
localStorage.removeItem('boc_token');
|
||||
localStorage.removeItem('boc_user');
|
||||
window.location.href = '/';
|
||||
}
|
||||
|
||||
function getToken() {
|
||||
return localStorage.getItem('boc_token');
|
||||
}
|
||||
|
||||
if (!getToken()) {
|
||||
window.location.href = '/';
|
||||
}
|
||||
|
||||
async function loadCustomers() {
|
||||
try {
|
||||
const res = await fetch('/api/v1/crm/customers', {
|
||||
headers: { 'Authorization': '***' + getToken() }
|
||||
});
|
||||
const data = await res.json();
|
||||
const tbody = document.getElementById('customers-body');
|
||||
if (data.customers && data.customers.length > 0) {
|
||||
tbody.innerHTML = data.customers.map(c => `
|
||||
<tr>
|
||||
<td>${c.name}</td>
|
||||
<td>${c.email}</td>
|
||||
<td>${c.phone || '-'}</td>
|
||||
<td><span class="badge ${c.status === 'active' ? 'success' : 'warning'}">${c.status}</span></td>
|
||||
<td>${new Date(c.created_at).toLocaleDateString('sv-SE')}</td>
|
||||
</tr>
|
||||
`).join('');
|
||||
} else {
|
||||
tbody.innerHTML = '<tr><td colspan="5" class="empty-state">Inga kunder an</td></tr>';
|
||||
}
|
||||
} catch (err) {
|
||||
document.getElementById('customers-body').innerHTML = '<tr><td colspan="5" class="error">Fel vid laddning</td></tr>';
|
||||
}
|
||||
}
|
||||
|
||||
function createCustomer() {
|
||||
window.location.href = '/dashboard.html';
|
||||
}
|
||||
|
||||
loadCustomers();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
+1
-557
File diff suppressed because one or more lines are too long
@@ -0,0 +1,21 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[50483,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/0omweqxzwamip.js","/_next/static/chunks/249txbb2rcsx4.js","/_next/static/chunks/1y-t4rdf4jtp-.js","/_next/static/chunks/0_n76xepp_qtt.js","/_next/static/chunks/3d-c09o_2qhpj.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
c:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
e:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
10:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0omweqxzwamip.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/249txbb2rcsx4.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0_n76xepp_qtt.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Lc",null,{"children":"$Ld"}],["$","div",null,{"hidden":true,"children":["$","$Le",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$Lf"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$10",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
d:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
11:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
f:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L11","3",{}]]
|
||||
@@ -0,0 +1,21 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[50483,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/0omweqxzwamip.js","/_next/static/chunks/249txbb2rcsx4.js","/_next/static/chunks/1y-t4rdf4jtp-.js","/_next/static/chunks/0_n76xepp_qtt.js","/_next/static/chunks/3d-c09o_2qhpj.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
c:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
e:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
10:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0omweqxzwamip.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/249txbb2rcsx4.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0_n76xepp_qtt.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Lc",null,{"children":"$Ld"}],["$","div",null,{"hidden":true,"children":["$","$Le",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$Lf"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$10",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
d:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
11:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
f:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L11","3",{}]]
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
3:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
4:"$Sreact.suspense"
|
||||
5:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"dashboard","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
3:I[50483,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/0omweqxzwamip.js","/_next/static/chunks/249txbb2rcsx4.js","/_next/static/chunks/1y-t4rdf4jtp-.js","/_next/static/chunks/0_n76xepp_qtt.js","/_next/static/chunks/3d-c09o_2qhpj.js"],"default"]
|
||||
6:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0omweqxzwamip.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/249txbb2rcsx4.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0_n76xepp_qtt.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
@@ -0,0 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[39483,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/14nranqs6y9b9.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","automation"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["automation",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/14nranqs6y9b9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[39483,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/14nranqs6y9b9.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","automation"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["automation",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/14nranqs6y9b9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
3:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
4:"$Sreact.suspense"
|
||||
5:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"dashboard","param":null,"prefetchHints":0,"slots":{"children":{"name":"automation","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
3:I[39483,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/14nranqs6y9b9.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
6:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/14nranqs6y9b9.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
@@ -0,0 +1,5 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:[]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[96302,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/1i7qiq_hrx76n.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","crm"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["crm",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1i7qiq_hrx76n.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[96302,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/1i7qiq_hrx76n.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","crm"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["crm",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1i7qiq_hrx76n.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
3:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
4:"$Sreact.suspense"
|
||||
5:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"dashboard","param":null,"prefetchHints":0,"slots":{"children":{"name":"crm","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
3:I[96302,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/1i7qiq_hrx76n.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
6:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1i7qiq_hrx76n.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
@@ -0,0 +1,5 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:[]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[22377,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/2-g99kmzbu69h.js","/_next/static/chunks/0mzu7tf4p0vct.js","/_next/static/chunks/00rp4-r4lwiz9.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","finance"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["finance",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2-g99kmzbu69h.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0mzu7tf4p0vct.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/00rp4-r4lwiz9.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[22377,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/2-g99kmzbu69h.js","/_next/static/chunks/0mzu7tf4p0vct.js","/_next/static/chunks/00rp4-r4lwiz9.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","finance"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["finance",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2-g99kmzbu69h.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0mzu7tf4p0vct.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/00rp4-r4lwiz9.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
3:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
4:"$Sreact.suspense"
|
||||
5:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"dashboard","param":null,"prefetchHints":0,"slots":{"children":{"name":"finance","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
3:I[22377,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/2-g99kmzbu69h.js","/_next/static/chunks/0mzu7tf4p0vct.js","/_next/static/chunks/00rp4-r4lwiz9.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
6:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2-g99kmzbu69h.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0mzu7tf4p0vct.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/00rp4-r4lwiz9.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
@@ -0,0 +1,5 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:[]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[54883,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/1g58xj_o89cju.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","hr"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["hr",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1g58xj_o89cju.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[54883,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/1g58xj_o89cju.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","hr"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["hr",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1g58xj_o89cju.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
3:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
4:"$Sreact.suspense"
|
||||
5:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"dashboard","param":null,"prefetchHints":0,"slots":{"children":{"name":"hr","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
3:I[54883,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/1g58xj_o89cju.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
6:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1g58xj_o89cju.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
@@ -0,0 +1,5 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:[]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[49915,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/1-q9ms7atzxxe.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","legal"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["legal",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1-q9ms7atzxxe.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[49915,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/1-q9ms7atzxxe.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","legal"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["legal",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1-q9ms7atzxxe.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
3:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
4:"$Sreact.suspense"
|
||||
5:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"dashboard","param":null,"prefetchHints":0,"slots":{"children":{"name":"legal","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
3:I[49915,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/1-q9ms7atzxxe.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
6:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/1-q9ms7atzxxe.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
@@ -0,0 +1,5 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:[]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[474,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/2b87dme85not3.js","/_next/static/chunks/249txbb2rcsx4.js","/_next/static/chunks/0_n76xepp_qtt.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","marketing"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["marketing",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2b87dme85not3.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/249txbb2rcsx4.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/0_n76xepp_qtt.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[474,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/2b87dme85not3.js","/_next/static/chunks/249txbb2rcsx4.js","/_next/static/chunks/0_n76xepp_qtt.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","marketing"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["marketing",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2b87dme85not3.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/249txbb2rcsx4.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/0_n76xepp_qtt.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
3:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
4:"$Sreact.suspense"
|
||||
5:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"dashboard","param":null,"prefetchHints":0,"slots":{"children":{"name":"marketing","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
3:I[474,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/2b87dme85not3.js","/_next/static/chunks/249txbb2rcsx4.js","/_next/static/chunks/0_n76xepp_qtt.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
6:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2b87dme85not3.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/249txbb2rcsx4.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/0_n76xepp_qtt.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
@@ -0,0 +1,5 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:[]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[53263,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/2ceonfrdsjuu1.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","operations"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["operations",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2ceonfrdsjuu1.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[53263,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/2ceonfrdsjuu1.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","operations"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["operations",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2ceonfrdsjuu1.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
3:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
4:"$Sreact.suspense"
|
||||
5:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"dashboard","param":null,"prefetchHints":0,"slots":{"children":{"name":"operations","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
3:I[53263,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/2ceonfrdsjuu1.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
6:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2ceonfrdsjuu1.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
@@ -0,0 +1,5 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:[]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[63281,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/2t8asixzmzz12.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","projects"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["projects",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2t8asixzmzz12.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[63281,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/2t8asixzmzz12.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","projects"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["projects",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2t8asixzmzz12.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
3:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
4:"$Sreact.suspense"
|
||||
5:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"dashboard","param":null,"prefetchHints":0,"slots":{"children":{"name":"projects","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
3:I[63281,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/2t8asixzmzz12.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
6:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2t8asixzmzz12.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
@@ -0,0 +1,5 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:[]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[18110,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/3zobkyr6bkdr1.js","/_next/static/chunks/3_lj28ffg1o1l.js","/_next/static/chunks/0hy9i4k988h7w.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","sales"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["sales",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/3zobkyr6bkdr1.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3_lj28ffg1o1l.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/0hy9i4k988h7w.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[18110,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/3zobkyr6bkdr1.js","/_next/static/chunks/3_lj28ffg1o1l.js","/_next/static/chunks/0hy9i4k988h7w.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","sales"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["sales",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/3zobkyr6bkdr1.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3_lj28ffg1o1l.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/0hy9i4k988h7w.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
3:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
4:"$Sreact.suspense"
|
||||
5:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"dashboard","param":null,"prefetchHints":0,"slots":{"children":{"name":"sales","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
3:I[18110,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/3zobkyr6bkdr1.js","/_next/static/chunks/3_lj28ffg1o1l.js","/_next/static/chunks/0hy9i4k988h7w.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
6:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/3zobkyr6bkdr1.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3_lj28ffg1o1l.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/0hy9i4k988h7w.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
@@ -0,0 +1,5 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:[]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[91027,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/2o_0py8230mal.js","/_next/static/chunks/2_esa3vqemunu.js","/_next/static/chunks/1y-t4rdf4jtp-.js","/_next/static/chunks/3d-c09o_2qhpj.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","settings"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["settings",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2o_0py8230mal.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/2_esa3vqemunu.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[91027,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/2o_0py8230mal.js","/_next/static/chunks/2_esa3vqemunu.js","/_next/static/chunks/1y-t4rdf4jtp-.js","/_next/static/chunks/3d-c09o_2qhpj.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","settings"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["settings",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2o_0py8230mal.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/2_esa3vqemunu.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
3:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
4:"$Sreact.suspense"
|
||||
5:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"dashboard","param":null,"prefetchHints":0,"slots":{"children":{"name":"settings","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
3:I[91027,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/2o_0py8230mal.js","/_next/static/chunks/2_esa3vqemunu.js","/_next/static/chunks/1y-t4rdf4jtp-.js","/_next/static/chunks/3d-c09o_2qhpj.js"],"default"]
|
||||
6:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/2o_0py8230mal.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/2_esa3vqemunu.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
@@ -0,0 +1,5 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:[]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[44383,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/3g32w42pyqaxb.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","support"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["support",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/3g32w42pyqaxb.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[44383,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/3g32w42pyqaxb.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","dashboard","support"],"q":"","i":false,"f":[[["",{"children":["dashboard",{"children":["support",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/3g32w42pyqaxb.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
3:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
4:"$Sreact.suspense"
|
||||
5:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"dashboard","param":null,"prefetchHints":0,"slots":{"children":{"name":"support","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}}}},"staleTime":300,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
3:I[44383,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/3g32w42pyqaxb.js","/_next/static/chunks/3d-c09o_2qhpj.js","/_next/static/chunks/1y-t4rdf4jtp-.js"],"default"]
|
||||
6:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/3g32w42pyqaxb.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3d-c09o_2qhpj.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1y-t4rdf4jtp-.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
@@ -0,0 +1,5 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:[]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":"$W4","buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
3:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
0:{"rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
@@ -0,0 +1 @@
|
||||
<svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z" clip-rule="evenodd" fill="#666" fill-rule="evenodd"/></svg>
|
||||
|
After Width: | Height: | Size: 391 B |
@@ -1,141 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="sv">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>BOC Finance — Business Operations Center</title>
|
||||
<link rel="stylesheet" href="assets/boc.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="app">
|
||||
<!-- Sidebar -->
|
||||
<aside class="sidebar">
|
||||
<div class="sidebar-logo">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<rect x="2" y="7" width="20" height="14" rx="2" ry="2"/>
|
||||
<path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"/>
|
||||
</svg>
|
||||
<span>BOC</span>
|
||||
</div>
|
||||
<nav class="sidebar-nav">
|
||||
<a href="dashboard.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="7" height="7"/><rect x="14" y="3" width="7" height="7"/><rect x="14" y="14" width="7" height="7"/><rect x="3" y="14" width="7" height="7"/></svg>
|
||||
<span>Dashboard</span>
|
||||
</a>
|
||||
<a href="crm.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>
|
||||
<span>CRM</span>
|
||||
</a>
|
||||
<a href="sales.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="12" y1="1" x2="12" y2="23"/><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"/></svg>
|
||||
<span>Sales</span>
|
||||
</a>
|
||||
<a href="finance.html" class="active">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="20" x2="18" y2="10"/><line x1="12" y1="20" x2="12" y2="4"/><line x1="6" y1="20" x2="6" y2="14"/></svg>
|
||||
<span>Finance</span>
|
||||
</a>
|
||||
<a href="hr.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>
|
||||
<span>HR</span>
|
||||
</a>
|
||||
<a href="legal.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/></svg>
|
||||
<span>Legal</span>
|
||||
</a>
|
||||
<a href="marketing.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 5.08V2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v3.08"/><path d="M7 9h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V11a2 2 0 0 1 2-2z"/><path d="M7 9V5a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v4"/></svg>
|
||||
<span>Marketing</span>
|
||||
</a>
|
||||
<a href="support.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"/><line x1="12" y1="17" x2="12.01" y2="17"/></svg>
|
||||
<span>Support</span>
|
||||
</a>
|
||||
<a href="automation.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/></svg>
|
||||
<span>Automation</span>
|
||||
</a>
|
||||
</nav>
|
||||
<div class="sidebar-footer">
|
||||
<span id="user-email">erik@landvex.com</span>
|
||||
<button onclick="logout()">Logga ut</button>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
<main class="main">
|
||||
<header class="module-header">
|
||||
<h1>Finance</h1>
|
||||
<p class="subtitle">Fakturor, utgifter och bokforing</p>
|
||||
</header>
|
||||
|
||||
<div class="panel">
|
||||
<div class="toolbar">
|
||||
<h3>Fakturor</h3>
|
||||
<button class="btn-primary" onclick="createInvoice()" style="width:auto; padding: 8px 16px;">+ Ny faktura</button>
|
||||
</div>
|
||||
<table class="data-table" id="invoices-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Nummer</th>
|
||||
<th>Kund</th>
|
||||
<th>Belopp</th>
|
||||
<th>Status</th>
|
||||
<th>Forfallo</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="invoices-body">
|
||||
<tr><td colspan="5" class="loading">Laddar...</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
|
||||
<script src="assets/boc.js"></script>
|
||||
<script>
|
||||
function logout() {
|
||||
localStorage.removeItem('boc_token');
|
||||
localStorage.removeItem('boc_user');
|
||||
window.location.href = '/';
|
||||
}
|
||||
|
||||
function getToken() {
|
||||
return localStorage.getItem('boc_token');
|
||||
}
|
||||
|
||||
if (!getToken()) {
|
||||
window.location.href = '/';
|
||||
}
|
||||
|
||||
async function loadInvoices() {
|
||||
try {
|
||||
const res = await fetch('/api/v1/finance/invoices', {
|
||||
headers: { 'Authorization': '***' + getToken() }
|
||||
});
|
||||
const data = await res.json();
|
||||
const tbody = document.getElementById('invoices-body');
|
||||
if (data.invoices && data.invoices.length > 0) {
|
||||
tbody.innerHTML = data.invoices.map(i => `
|
||||
<tr>
|
||||
<td>${i.invoice_number}</td>
|
||||
<td>${i.customer_name || '-'}</td>
|
||||
<td>$${i.total_amount?.toLocaleString() || 0}</td>
|
||||
<td><span class="badge ${i.status === 'paid' ? 'success' : i.status === 'overdue' ? 'danger' : 'warning'}">${i.status}</span></td>
|
||||
<td>${new Date(i.due_date).toLocaleDateString('sv-SE')}</td>
|
||||
</tr>
|
||||
`).join('');
|
||||
} else {
|
||||
tbody.innerHTML = '<tr><td colspan="5" class="empty-state">Inga fakturor an</td></tr>';
|
||||
}
|
||||
} catch (err) {
|
||||
document.getElementById('invoices-body').innerHTML = '<tr><td colspan="5" class="error">Fel vid laddning</td></tr>';
|
||||
}
|
||||
}
|
||||
|
||||
function createInvoice() {
|
||||
window.location.href = '/dashboard.html';
|
||||
}
|
||||
|
||||
loadInvoices();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1 @@
|
||||
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.27 14.1a6.5 6.5 0 0 0 3.67-3.45q-1.24.21-2.7.34-.31 1.83-.97 3.1M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.48-1.52a7 7 0 0 1-.96 0H7.5a4 4 0 0 1-.84-1.32q-.38-.89-.63-2.08a40 40 0 0 0 3.92 0q-.25 1.2-.63 2.08a4 4 0 0 1-.84 1.31zm2.94-4.76q1.66-.15 2.95-.43a7 7 0 0 0 0-2.58q-1.3-.27-2.95-.43a18 18 0 0 1 0 3.44m-1.27-3.54a17 17 0 0 1 0 3.64 39 39 0 0 1-4.3 0 17 17 0 0 1 0-3.64 39 39 0 0 1 4.3 0m1.1-1.17q1.45.13 2.69.34a6.5 6.5 0 0 0-3.67-3.44q.65 1.26.98 3.1M8.48 1.5l.01.02q.41.37.84 1.31.38.89.63 2.08a40 40 0 0 0-3.92 0q.25-1.2.63-2.08a4 4 0 0 1 .85-1.32 7 7 0 0 1 .96 0m-2.75.4a6.5 6.5 0 0 0-3.67 3.44 29 29 0 0 1 2.7-.34q.31-1.83.97-3.1M4.58 6.28q-1.66.16-2.95.43a7 7 0 0 0 0 2.58q1.3.27 2.95.43a18 18 0 0 1 0-3.44m.17 4.71q-1.45-.12-2.69-.34a6.5 6.5 0 0 0 3.67 3.44q-.65-1.27-.98-3.1" fill="#666"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>
|
||||
|
After Width: | Height: | Size: 1.0 KiB |
-141
@@ -1,141 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="sv">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>BOC HR — Business Operations Center</title>
|
||||
<link rel="stylesheet" href="assets/boc.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="app">
|
||||
<!-- Sidebar -->
|
||||
<aside class="sidebar">
|
||||
<div class="sidebar-logo">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<rect x="2" y="7" width="20" height="14" rx="2" ry="2"/>
|
||||
<path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"/>
|
||||
</svg>
|
||||
<span>BOC</span>
|
||||
</div>
|
||||
<nav class="sidebar-nav">
|
||||
<a href="dashboard.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="7" height="7"/><rect x="14" y="3" width="7" height="7"/><rect x="14" y="14" width="7" height="7"/><rect x="3" y="14" width="7" height="7"/></svg>
|
||||
<span>Dashboard</span>
|
||||
</a>
|
||||
<a href="crm.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>
|
||||
<span>CRM</span>
|
||||
</a>
|
||||
<a href="sales.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="12" y1="1" x2="12" y2="23"/><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"/></svg>
|
||||
<span>Sales</span>
|
||||
</a>
|
||||
<a href="finance.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="20" x2="18" y2="10"/><line x1="12" y1="20" x2="12" y2="4"/><line x1="6" y1="20" x2="6" y2="14"/></svg>
|
||||
<span>Finance</span>
|
||||
</a>
|
||||
<a href="hr.html" class="active">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>
|
||||
<span>HR</span>
|
||||
</a>
|
||||
<a href="legal.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/></svg>
|
||||
<span>Legal</span>
|
||||
</a>
|
||||
<a href="marketing.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 5.08V2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v3.08"/><path d="M7 9h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V11a2 2 0 0 1 2-2z"/><path d="M7 9V5a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v4"/></svg>
|
||||
<span>Marketing</span>
|
||||
</a>
|
||||
<a href="support.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"/><line x1="12" y1="17" x2="12.01" y2="17"/></svg>
|
||||
<span>Support</span>
|
||||
</a>
|
||||
<a href="automation.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/></svg>
|
||||
<span>Automation</span>
|
||||
</a>
|
||||
</nav>
|
||||
<div class="sidebar-footer">
|
||||
<span id="user-email">erik@landvex.com</span>
|
||||
<button onclick="logout()">Logga ut</button>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
<main class="main">
|
||||
<header class="module-header">
|
||||
<h1>HR</h1>
|
||||
<p class="subtitle">Personal och organisation</p>
|
||||
</header>
|
||||
|
||||
<div class="panel">
|
||||
<div class="toolbar">
|
||||
<h3>Personal</h3>
|
||||
<button class="btn-primary" onclick="createEmployee()" style="width:auto; padding: 8px 16px;">+ Ny anstalld</button>
|
||||
</div>
|
||||
<table class="data-table" id="employees-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Namn</th>
|
||||
<th>E-post</th>
|
||||
<th>Avdelning</th>
|
||||
<th>Roll</th>
|
||||
<th>Startdatum</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="employees-body">
|
||||
<tr><td colspan="5" class="loading">Laddar...</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
|
||||
<script src="assets/boc.js"></script>
|
||||
<script>
|
||||
function logout() {
|
||||
localStorage.removeItem('boc_token');
|
||||
localStorage.removeItem('boc_user');
|
||||
window.location.href = '/';
|
||||
}
|
||||
|
||||
function getToken() {
|
||||
return localStorage.getItem('boc_token');
|
||||
}
|
||||
|
||||
if (!getToken()) {
|
||||
window.location.href = '/';
|
||||
}
|
||||
|
||||
async function loadEmployees() {
|
||||
try {
|
||||
const res = await fetch('/api/v1/hr/employees', {
|
||||
headers: { 'Authorization': '***' + getToken() }
|
||||
});
|
||||
const data = await res.json();
|
||||
const tbody = document.getElementById('employees-body');
|
||||
if (data.employees && data.employees.length > 0) {
|
||||
tbody.innerHTML = data.employees.map(e => `
|
||||
<tr>
|
||||
<td>${e.first_name} ${e.last_name}</td>
|
||||
<td>${e.email}</td>
|
||||
<td>${e.department || '-'}</td>
|
||||
<td>${e.role || '-'}</td>
|
||||
<td>${e.start_date ? new Date(e.start_date).toLocaleDateString('sv-SE') : '-'}</td>
|
||||
</tr>
|
||||
`).join('');
|
||||
} else {
|
||||
tbody.innerHTML = '<tr><td colspan="5" class="empty-state">Inga anstallda an</td></tr>';
|
||||
}
|
||||
} catch (err) {
|
||||
document.getElementById('employees-body').innerHTML = '<tr><td colspan="5" class="error">Fel vid laddning</td></tr>';
|
||||
}
|
||||
}
|
||||
|
||||
function createEmployee() {
|
||||
window.location.href = '/dashboard.html';
|
||||
}
|
||||
|
||||
loadEmployees();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
+1
-16
File diff suppressed because one or more lines are too long
@@ -0,0 +1,18 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
6:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
b:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
d:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":["$L5",null,["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],{},null,false,null]},null,false,null],["$","$1","h",{"children":[null,["$","$L9",null,{"children":"$La"}],["$","div",null,{"hidden":true,"children":["$","$Lb",null,{"children":["$","$7",null,{"name":"Next.Metadata","children":"$Lc"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$d",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
5:E{"digest":"NEXT_REDIRECT;replace;/login;307;"}
|
||||
a:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
e:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
8:null
|
||||
c:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$Le","3",{}]]
|
||||
-140
@@ -1,140 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="sv">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>BOC Legal — Business Operations Center</title>
|
||||
<link rel="stylesheet" href="assets/boc.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="app">
|
||||
<aside class="sidebar">
|
||||
<div class="sidebar-logo">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
||||
<rect x="2" y="7" width="20" height="14" rx="2" ry="2"/>
|
||||
<path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"/>
|
||||
</svg>
|
||||
<span>BOC</span>
|
||||
</div>
|
||||
<nav class="sidebar-nav">
|
||||
<a href="dashboard.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="7" height="7"/><rect x="14" y="3" width="7" height="7"/><rect x="14" y="14" width="7" height="7"/><rect x="3" y="14" width="7" height="7"/></svg>
|
||||
<span>Dashboard</span>
|
||||
</a>
|
||||
<a href="crm.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/></svg>
|
||||
<span>CRM</span>
|
||||
</a>
|
||||
<a href="sales.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="12" y1="1" x2="12" y2="23"/><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"/></svg>
|
||||
<span>Sales</span>
|
||||
</a>
|
||||
<a href="finance.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="20" x2="18" y2="10"/><line x1="12" y1="20" x2="12" y2="4"/><line x1="6" y1="20" x2="6" y2="14"/></svg>
|
||||
<span>Finance</span>
|
||||
</a>
|
||||
<a href="hr.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>
|
||||
<span>HR</span>
|
||||
</a>
|
||||
<a href="legal.html" class="active">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"/><polyline points="14 2 14 8 20 8"/><line x1="16" y1="13" x2="8" y2="13"/><line x1="16" y1="17" x2="8" y2="17"/></svg>
|
||||
<span>Legal</span>
|
||||
</a>
|
||||
<a href="marketing.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11 5.08V2a1 1 0 0 0-1-1H2a1 1 0 0 0-1 1v3.08"/><path d="M7 9h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V11a2 2 0 0 1 2-2z"/><path d="M7 9V5a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v4"/></svg>
|
||||
<span>Marketing</span>
|
||||
</a>
|
||||
<a href="support.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"/><line x1="12" y1="17" x2="12.01" y2="17"/></svg>
|
||||
<span>Support</span>
|
||||
</a>
|
||||
<a href="automation.html">
|
||||
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"/></svg>
|
||||
<span>Automation</span>
|
||||
</a>
|
||||
</nav>
|
||||
<div class="sidebar-footer">
|
||||
<span id="user-email">erik@landvex.com</span>
|
||||
<button onclick="logout()">Logga ut</button>
|
||||
</div>
|
||||
</aside>
|
||||
|
||||
<main class="main">
|
||||
<header class="module-header">
|
||||
<h1>Legal</h1>
|
||||
<p class="subtitle">Kontrakt och juridiska dokument</p>
|
||||
</header>
|
||||
|
||||
<div class="panel">
|
||||
<div class="toolbar">
|
||||
<h3>Kontrakt</h3>
|
||||
<button class="btn-primary" onclick="createContract()" style="width:auto; padding: 8px 16px;">+ Nytt kontrakt</button>
|
||||
</div>
|
||||
<table class="data-table" id="contracts-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Titel</th>
|
||||
<th>Motpart</th>
|
||||
<th>Typ</th>
|
||||
<th>Status</th>
|
||||
<th>Signeras</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="contracts-body">
|
||||
<tr><td colspan="5" class="loading">Laddar...</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
|
||||
<script src="assets/boc.js"></script>
|
||||
<script>
|
||||
function logout() {
|
||||
localStorage.removeItem('boc_token');
|
||||
localStorage.removeItem('boc_user');
|
||||
window.location.href = '/';
|
||||
}
|
||||
|
||||
function getToken() {
|
||||
return localStorage.getItem('boc_token');
|
||||
}
|
||||
|
||||
if (!getToken()) {
|
||||
window.location.href = '/';
|
||||
}
|
||||
|
||||
async function loadContracts() {
|
||||
try {
|
||||
const res = await fetch('/api/v1/legal/contracts', {
|
||||
headers: { 'Authorization': '***' + getToken() }
|
||||
});
|
||||
const data = await res.json();
|
||||
const tbody = document.getElementById('contracts-body');
|
||||
if (data.contracts && data.contracts.length > 0) {
|
||||
tbody.innerHTML = data.contracts.map(c => `
|
||||
<tr>
|
||||
<td>${c.title}</td>
|
||||
<td>${c.counterparty || '-'}</td>
|
||||
<td>${c.contract_type || '-'}</td>
|
||||
<td><span class="badge ${c.status === 'active' ? 'success' : c.status === 'expired' ? 'danger' : 'warning'}">${c.status}</span></td>
|
||||
<td>${c.signature_date ? new Date(c.signature_date).toLocaleDateString('sv-SE') : '-'}</td>
|
||||
</tr>
|
||||
`).join('');
|
||||
} else {
|
||||
tbody.innerHTML = '<tr><td colspan="5" class="empty-state">Inga kontrakt an</td></tr>';
|
||||
}
|
||||
} catch (err) {
|
||||
document.getElementById('contracts-body').innerHTML = '<tr><td colspan="5" class="error">Fel vid laddning</td></tr>';
|
||||
}
|
||||
}
|
||||
|
||||
function createContract() {
|
||||
window.location.href = '/dashboard.html';
|
||||
}
|
||||
|
||||
loadContracts();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
+1
-171
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[21159,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/3jegf_ml6hiei.js","/_next/static/chunks/2q3b3wjgsic4a.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","login"],"q":"","i":false,"f":[[["",{"children":["login",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/3jegf_ml6hiei.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/2q3b3wjgsic4a.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,23 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
5:I[85427,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ClientPageRoot"]
|
||||
6:I[21159,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js","/_next/static/chunks/3jegf_ml6hiei.js","/_next/static/chunks/2q3b3wjgsic4a.js"],"default"]
|
||||
9:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
d:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
f:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
11:I[89066,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default",1]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"P":null,"c":["","login"],"q":"","i":false,"f":[[["",{"children":["login",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",16],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L5",null,{"Component":"$6","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/3jegf_ml6hiei.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/2q3b3wjgsic4a.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,null]},null,false,"$@c"]},null,false,null],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$L10"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$11",[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]]],"S":true,"h":null,"s":"$undefined","l":"$undefined","p":"$undefined","d":"$undefined","b":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
12:[]
|
||||
c:"$W12"
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
13:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
b:null
|
||||
10:[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L13","3",{}]]
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"ViewportBoundary"]
|
||||
3:I[82479,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"MetadataBoundary"]
|
||||
4:"$Sreact.suspense"
|
||||
5:I[60272,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"IconMark"]
|
||||
0:{"rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"AMOS — Financial Operating System"}],["$","meta","1",{"name":"description","content":"Enterprise Financial Platform"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.2vob68tjqpejf.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L5","3",{}]]}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,6 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[35888,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"TooltipProvider"]
|
||||
3:I[49868,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
4:I[34007,["/_next/static/chunks/2z2yw-wt8lvrp.js","/_next/static/chunks/0258n8rhdm_j7.js","/_next/static/chunks/1d_6l9bmit16_.js","/_next/static/chunks/17xe31x2ubc-_.js"],"default"]
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
0:{"rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/1hitpibo5rx7w.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/2z2yw-wt8lvrp.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0258n8rhdm_j7.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/1d_6l9bmit16_.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/17xe31x2ubc-_.js","async":true}]],["$","html",null,{"lang":"en","className":"geist_a71539c9-module__T19VSG__variable geist_mono_8d43a2aa-module__8Li5zG__variable h-full antialiased","children":["$","body",null,{"className":"min-h-full flex flex-col bg-[#F0F2F5]","children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
@@ -0,0 +1,4 @@
|
||||
:HL["/_next/static/chunks/1hitpibo5rx7w.css","style"]
|
||||
:HL["/_next/static/media/797e433ab948586e-s.p.0r6juujl39pe6.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
||||
0:{"tree":{"name":"","param":null,"prefetchHints":16,"slots":{"children":{"name":"login","param":null,"prefetchHints":0,"slots":{"children":{"name":"__PAGE__","param":null,"prefetchHints":0,"slots":null}}}}},"staleTime":300,"buildId":"gdZz9QzbdHwdXHkqcAgm2"}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user