7 Commits

Author SHA1 Message Date
1a85abef04 Merge version_9 into main
Merge version_9 into main
2026-03-05 17:20:36 +00:00
fea76e3a99 Update src/app/process/page.tsx 2026-03-05 17:20:29 +00:00
3e7bf4f7ca Update src/app/pricing/page.tsx 2026-03-05 17:20:28 +00:00
fb5ce39362 Update src/app/page.tsx 2026-03-05 17:20:27 +00:00
bc0ff3af0d Update src/app/layout.tsx 2026-03-05 17:20:26 +00:00
2a27a9b7df Merge version_8 into main
Merge version_8 into main
2026-03-05 17:12:31 +00:00
b417c2db2d Merge version_8 into main
Merge version_8 into main
2026-03-05 17:11:36 +00:00
4 changed files with 16 additions and 5 deletions

View File

@@ -19,7 +19,18 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.variable}>{children}
<body className={inter.variable}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
if (typeof window !== 'undefined') {
window.__REACT_DEVTOOLS_GLOBAL_HOOK__ = window.__REACT_DEVTOOLS_GLOBAL_HOOK__ || { isDisabled: true };
}
`,
}}
/>
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1389,4 +1400,4 @@ export default function RootLayout({
</body>
</html>
);
}
}

View File

@@ -200,4 +200,4 @@ export default function DigiBridgedLanding() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -85,4 +85,4 @@ export default function PricingPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -99,4 +99,4 @@ export default function ProcessPage() {
</div>
</ThemeProvider>
);
}
}