Lighthouse Mobile
· 0 checks — Mobile Lighthouse audit -- Performance, Accessibility, Best Practices, and SEO category breakdown.Detailed Report
Audit breakdown by category with detailed findings.
Performance
Insights
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Performance issues directly impact user engagement and conversion rates.
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Duration |
|---|---|---|
| app.glaido.com/_next/static/css/653e28f522207d27.css | 138.1 KiB | 750 ms |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| app.glaido.com/ | 777 ms |
| app.glaido.com/login?next=%2F | 0.0 ms |
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Diagnostics
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| app.glaido.com/_next/static/chunks/394382b4-b2f938193c4dfaf5.js | 58.5 KiB | 43.4 KiB |
| app.glaido.com/_next/static/chunks/493-b04f35346e51d523.js | 45.4 KiB | 21.0 KiB |
More information about the performance of your application. These numbers don't directly affect the Performance score.
Accessibility
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Best practices
One main landmark helps screen reader users navigate a web page. Learn more about landmarks.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
html html |
These items highlight common accessibility best practices.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Options div.fixed > div.flex > div.grid > button.whitespace-nowrap |
Best Practices
SEO
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Crawling and Indexing
Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. Learn how to make links crawlable
Performance issues directly impact user engagement and conversion rates.
| Uncrawlable Link |
|---|
Forgot your password? div.flex > div.flex > form.flex > a.text-body-md-regular |
If your robots.txt file is malformed, crawlers may not be able to understand how you want your website to be crawled or indexed. Learn more about robots.txt.
Performance issues directly impact user engagement and conversion rates.
| Line # | Content | Error |
|---|---|---|
| 1 | <!DOCTYPE html><!--JZB_M0ULBUq4OAN8WRqlP--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/653e28f522207d27.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-2362db2b61322c96.js"/><script src="/_next/static/chunks/4bd1b696-c023c6e3521b1417.js" async=""></script><script src="/_next/static/chunks/493-b04f35346e51d523.js" async=""></script><script src="/_next/static/chunks/main-app-207b798bdc69d2ae.js" async=""></script><script src="/_next/static/chunks/394382b4-b2f938193c4dfaf5.js" async=""></script><script src="/_next/static/chunks/870-3853003e13dc86b3.js" async=""></script><script src="/_next/static/chunks/288-2124b0e1365bdac3.js" async=""></script><script src="/_next/static/chunks/421-bc0264e537527f53.js" async=""></script><script src="/_next/static/chunks/678-5066d3433fcfdd2f.js" async=""></script><script src="/_next/static/chunks/899-53b2e946a219fbd6.js" async=""></script><script src="/_next/static/chunks/app/layout-0cf1b0dce58901cc.js" async=""></script><script src="/_next/static/chunks/app/(auth-callback)/layout-fe69e83e8d7076d9.js" async=""></script><script src="/_next/static/chunks/560-b5ccc073f7dc1175.js" async=""></script><script src="/_next/static/chunks/app/(auth)/login/page-138f24c2f34a4780.js" async=""></script><title>Sign In - Glaido</title><meta name="description" content="Dictation app"/><link rel="icon" href="/images/favicon/favicon.svg"/><script> | Syntax not understood |
| 2 | (() => { | Syntax not understood |
| 3 | try { | Syntax not understood |
| 4 | const stored = localStorage.getItem('glaido:appearance'); | Unknown directive |
| 5 | const preference = stored === 'light' || stored === 'dark' || stored === 'system' | Syntax not understood |
| 6 | ? stored | Syntax not understood |
| 7 | : 'dark'; | Unknown directive |
| 8 | const systemPrefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches; | Unknown directive |
| 9 | const theme = preference === 'system' | Syntax not understood |
| 10 | ? (systemPrefersDark ? 'dark' : 'light') | Unknown directive |
| 11 | : preference; | Unknown directive |
| 12 | document.documentElement.setAttribute('data-theme', theme); | Syntax not understood |
| 13 | } catch { | Syntax not understood |
| 14 | document.documentElement.setAttribute('data-theme', 'dark'); | Syntax not understood |
| 15 | } | Syntax not understood |
| 16 | })(); | Syntax not understood |
| 17 | </script><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="min-h-screen font-sans antialiased"><div hidden=""><!--$--><!--/$--></div><script src="/_next/static/chunks/webpack-2362db2b61322c96.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[3434,[\"484\",\"static/chunks/394382b4-b2f938193c4dfaf5.js\",\"870\",\"static/chunks/870-3853003e13dc86b3.js\",\"288\",\"static/chunks/288-2124b0e1365bdac3.js\",\"421\",\"static/chunks/421-bc0264e537527f53.js\",\"678\",\"static/chunks/678-5066d3433fcfdd2f.js\",\"899\",\"static/chunks/899-53b2e946a219fbd6.js\",\"177\",\"static/chunks/app/layout-0cf1b0dce58901cc.js\"],\"Providers\",1]\n3:I[1776,[\"484\",\"static/chunks/394382b4-b2f938193c4dfaf5.js\",\"870\",\"static/chunks/870-3853003e13dc86b3.js\",\"288\",\"static/chunks/288-2124b0e1365bdac3.js\",\"421\",\"static/chunks/421-bc0264e537527f53.js\",\"678\",\"static/chunks/678-5066d3433fcfdd2f.js\",\"899\",\"static/chunks/899-53b2e946a219fbd6.js\",\"177\",\"static/chunks/app/layout-0cf1b0dce58901cc.js\"],\"CookieConsentManager\"]\n4:I[9766,[],\"\"]\n5:I[8924,[],\"\"]\n6:I[1061,[\"870\",\"static/chunks/870-3853003e13dc86b3.js\",\"288\",\"static/chunks/288-2124b0e1365bdac3.js\",\"678\",\"static/chunks/678-5066d3433fcfdd2f.js\",\"899\",\"static/chunks/899-53b2e946a219fbd6.js\",\"475\",\"static/chunks/app/(auth-callback)/layout-fe69e83e8d7076d9.js\"],\"PublicRoute\"]\n12:I[7150,[],\"\"]\n:HL[\"/_next/static/css/653e28f522207d27.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"JZB_M0ULBUq4OAN8WRqlP\",\"p\":\"\",\"c\":[\"\",\"login\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"(auth)\",{\"children\":[\"login\",{\"children\":[\"__PAGE__\",{}]}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/653e28f522207d27.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"suppressHydrationWarning\":true,\"children\":[[\"$\",\"head\",null,{\"children\":[\"$\",\"script\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"\\n (() =\u003e {\\n try {\\n const stored = localStorage.getItem('glaido:appearance');\\n const preference = stored === 'light' || stored === 'dark' || stored === 'system'\\n ? stored\\n : 'dark';\\n const systemPrefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches;\\n const theme = preference === 'system'\\n ? (systemPrefersDark ? 'dark' : 'light')\\n : preference;\\n document.documentElement.setAttribute('data-theme', theme);\\n } catch {\\n document.documentElement.setAttribute('data-theme', 'dark');\\n }\\n })();\\n\"}}]}],[\"$\",\"body\",null,{\"className\":\"min-h-screen font-sans antialiased\",\"children\":[\"$\",\"$L2\",null,{\"children\":[[\"$\",\"$L3\",null,{\"dubReferDomain\":\"get.glaido.com\"}],[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",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\":[\"(auth)\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L6\",null,{\"children\":[\"$\",\"div\",null,{\"className\":\"relative flex min-h-screen flex-col items-center bg-background-primary px-4 pt-[clamp(3rem,15vh,240px)] pb-12 overflow-hidden\",\"children\":[[\"$\",\"div\",null,{\"className\":\"pointer-events-none fixed inset-0 opacity-[0.015]\",\"style\":{\"backgroundImage\":\"linear-gradient(var(--color-border-default) 1px, transparent 1px),\\n linear-gradient(90deg, var(--color-border-default) 1px, transparent 1px)\",\"backgroundSize\":\"64px 64px\"}}],[\"$\",\"svg\",null,{\"viewBox\":\"0 0 561.237 598.876\",\"fill\":\"none\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"className\":\"pointer-events-none fixed top-4 left-4 w-[clamp(280px,30vw,492px)] rotate-180 opacity-[0.08] text-text-default hidden lg:block\",\"children\":[[\"$\",\"svg\",\"0\",{\"x\":392.234,\"y\":2.779,\"width\":\"165\",\"height\":\"177\",\"viewBox\":\"0 0 165 177\",\"children\":[[\"$\",\"path\",null,{\"d\":\"M1.72675 61.2898L61.2899 1.72672C63.5783 -0.561687 67.2727 -0.577523 69.5415 1.69134L83.92 16.0699C86.1889 18.3387 86.1731 22.0331 83.8847 24.3215L23.8135 84.3926C21.9082 86.298 21.7785 89.3364 23.5159 91.366L84.223 152.073C86.4919 154.342 86.476 158.036 84.1876 160.325L69.9443 174.568C67.6559 176.857 63.9615 176.872 61.6926 174.604L1.75577 114.667C-0.513092 112.398 -0.497269 108.703 1.79114 106.415L15.7755 92.4307C18.207 89.9992 18.2238 86.0739 15.8131 83.6633L1.69136 69.5415C-0.577515 67.2726 -0.561661 63.5782 1.72675 61.2898Z\",\"fill\":\"currentColor\"}],\"$L7\"]}],\"$L8\",\"$L9\",\"$La\",\"$Lb\",\"$Lc\"]}],\"$Ld\",\"$Le\"]}]}]]}],{\"children\":[\"login\",\"$Lf\",{\"children\":[\"__PAGE__\",\"$L10\",{},null,false]},null,false]},null,false]},null,false],\"$L11\",false]],\"m\":\"$undefined\",\"G\":[\"$12\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"13:\"$Sreact.suspense\"\n14:I[4340,[\"484\",\"static/chunks/394382b4-b2f938193c4dfaf5.js\",\"870\",\"static/chunks/870-3853003e13dc86b3.js\",\"288\",\"static/chunks/288-2124b0e1365bdac3.js\",\"560\",\"static/chunks/560-b5ccc073f7dc1175.js\",\"678\",\"static/chunks/678-5066d3433fcfdd2f.js\",\"899\",\"static/chunks/899-53b2e946a219fbd6.js\",\"72\",\"static/chunks/app/(auth)/login/page-138f24c2f34a4780.js\"],\"LoginForm\",1]\n15:I[4431,[],\"OutletBoundary\"]\n17:I[5278,[],\"AsyncMetadataOutlet\"]\n19:I[4431,[],\"ViewportBoundary\"]\n1b:I[4431,[],\"MetadataBoundary\"]\n7:[\"$\",\"path\",null,{\"d\":\"M80.7394 61.2898L140.303 1.72672C142.591 -0.561687 146.285 -0.577523 148.554 1.69134L162.933 16.0699C165.202 18.3387 165.186 22.0331 162.897 24.3215L102.826 84.3926C100.921 86.298 100.791 89.3364 102.529 91.366L163.236 152.073C165.505 154.342 165.489 158.036 163.2 160.325L148.957 174.568C146.669 176.857 142.974 176.872 140.705 174.604L80.7684 114.667C78.4995 112.398 78.5154 108.703 80.8038 106.415L94.7882 92.4307C97.2196 89.9992 97.2364 86.0739 94.8258 83.6633L80.704 69.5415C78.4351 67.2726 78.451 63.5782 80.7394 61.2898Z\",\"fill\":\"currentColor\"}]\n8:[\"$\",\"svg\",\"1\",{\"x\":198.155,\"y\":211.291,\"width\":\"165\",\"height\":\"177\",\"viewBox\":\"0 0 165 177\",\"children\":\"$0:f:0:1:2:children:1:props:children:1:props:children:props:children:1:props:children:0:props:children\"}]\n"])</script><script>self.__next_f.push([1,"9:[\"$\",\"svg\",\"2\",{\"x\":388.158,\"y\":208.512,\"width\":\"174\",\"height\":\"182\",\"viewBox\":\"0 0 174 182\",\"children\":[[\"$\",\"path\",null,{\"d\":\"M131.253 0H37.8547C34.2663 0 31.3574 2.87241 31.3574 6.4157V28.8707C31.3574 32.414 34.2663 35.2864 37.8547 35.2864H132.049C135.037 35.2864 137.521 37.5577 137.75 40.4991V140.322C137.75 143.866 140.659 146.738 144.247 146.738H166.581C170.17 146.738 173.079 143.866 173.079 140.322V41.7021C173.079 38.1588 170.17 35.2864 166.581 35.2864H144.653C140.841 35.2864 137.75 32.2344 137.75 28.4697V6.4157C137.75 2.87241 134.841 0 131.253 0Z\",\"fill\":\"currentColor\"}],[\"$\",\"path\",null,{\"d\":\"M5.67072e-05 140.397L6.07537e-05 41.5542C6.09091e-05 37.9976 2.87247 35.1145 6.41576 35.1145L28.8707 35.1145C32.414 35.1145 35.2864 37.9976 35.2864 41.5542L35.2864 141.186C35.2864 144.147 37.5578 146.609 40.4992 146.836L135.306 146.836C138.849 146.836 141.721 149.719 141.721 153.276L141.721 175.413C141.721 178.969 138.849 181.852 135.306 181.852L41.7021 181.852C38.1589 181.852 35.2864 178.969 35.2864 175.413L35.2864 153.679C35.2864 149.9 32.2345 146.836 28.4698 146.836L6.41576 146.836C2.87246 146.836 5.65518e-05 143.953 5.67072e-05 140.397Z\",\"fill\":\"currentColor\"}]]}]\n"])</script><script>self.__next_f.push([1,"a:[\"$\",\"svg\",\"3\",{\"x\":4.076,\"y\":419.803,\"width\":\"165\",\"height\":\"177\",\"viewBox\":\"0 0 165 177\",\"children\":\"$0:f:0:1:2:children:1:props:children:1:props:children:props:children:1:props:children:0:props:children\"}]\nb:[\"$\",\"svg\",\"4\",{\"x\":194.079,\"y\":417.024,\"width\":\"174\",\"height\":\"182\",\"viewBox\":\"0 0 174 182\",\"children\":\"$9:props:children\"}]\nc:[\"$\",\"svg\",\"5\",{\"x\":392.234,\"y\":419.803,\"width\":\"165\",\"height\":\"177\",\"viewBox\":\"0 0 165 177\",\"children\":[\"$\",\"g\",null,{\"transform\":\"scale(-1, 1) translate(-164.927, 0)\",\"children\":\"$0:f:0:1:2:children:1:props:children:1:props:children:props:children:1:props:children:0:props:children\"}]}]\n"])</script><script>self.__next_f.push([1,"d:[\"$\",\"svg\",null,{\"viewBox\":\"0 0 561.237 598.876\",\"fill\":\"none\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"className\":\"pointer-events-none fixed bottom-4 right-4 w-[clamp(280px,30vw,492px)] opacity-[0.08] text-text-default hidden lg:block\",\"children\":[[\"$\",\"svg\",\"0\",{\"x\":392.234,\"y\":2.779,\"width\":\"165\",\"height\":\"177\",\"viewBox\":\"0 0 165 177\",\"children\":\"$0:f:0:1:2:children:1:props:children:1:props:children:props:children:1:props:children:0:props:children\"}],[\"$\",\"svg\",\"1\",{\"x\":198.155,\"y\":211.291,\"width\":\"165\",\"height\":\"177\",\"viewBox\":\"0 0 165 177\",\"children\":\"$0:f:0:1:2:children:1:props:children:1:props:children:props:children:1:props:children:0:props:children\"}],[\"$\",\"svg\",\"2\",{\"x\":388.158,\"y\":208.512,\"width\":\"174\",\"height\":\"182\",\"viewBox\":\"0 0 174 182\",\"children\":\"$9:props:children\"}],[\"$\",\"svg\",\"3\",{\"x\":4.076,\"y\":419.803,\"width\":\"165\",\"height\":\"177\",\"viewBox\":\"0 0 165 177\",\"children\":\"$0:f:0:1:2:children:1:props:children:1:props:children:props:children:1:props:children:0:props:children\"}],[\"$\",\"svg\",\"4\",{\"x\":194.079,\"y\":417.024,\"width\":\"174\",\"height\":\"182\",\"viewBox\":\"0 0 174 182\",\"children\":\"$9:props:children\"}],[\"$\",\"svg\",\"5\",{\"x\":392.234,\"y\":419.803,\"width\":\"165\",\"height\":\"177\",\"viewBox\":\"0 0 165 177\",\"children\":[\"$\",\"g\",null,{\"transform\":\"scale(-1, 1) translate(-164.927, 0)\",\"children\":\"$0:f:0:1:2:children:1:props:children:1:props:children:props:children:1:props:children:0:props:children\"}]}]]}]\n"])</script><script>self.__next_f.push([1,"e:[\"$\",\"div\",null,{\"className\":\"relative z-10 flex flex-col items-center gap-[clamp(1.5rem,4vh,2.5rem)] w-full max-w-[480px]\",\"children\":[[\"$\",\"svg\",null,{\"width\":\"83\",\"height\":\"82\",\"viewBox\":\"0 0 83 82\",\"fill\":\"none\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"className\":\"h-8 w-auto text-[var(--color-logo-mark)]\",\"children\":[[\"$\",\"path\",null,{\"d\":\"M66.8636 27.3358H30.8497C29.466 27.3358 28.3443 28.4546 28.3443 29.8348V38.5815C28.3443 39.9617 29.466 41.0805 30.8497 41.0805H67.1707C68.3227 41.0805 69.2805 41.9652 69.3689 43.111V65.7586C69.3689 67.1388 70.4906 68.2577 71.8742 68.2577H80.4862C81.8699 68.2577 82.9915 67.1388 82.9915 65.7586V43.5796C82.9915 42.1994 81.8699 41.0805 80.4862 41.0805H72.0308C70.5607 41.0805 69.3689 39.8917 69.3689 38.4253V29.8348C69.3689 28.4546 68.2472 27.3358 66.8636 27.3358Z\",\"fill\":\"var(--color-logo-mark)\"}],[\"$\",\"path\",null,{\"d\":\"M55.9037 65.9124V57.1657C55.9037 55.7855 54.7821 54.6667 53.3984 54.6667H24.2741C18.9125 54.6667 14.566 50.3311 14.566 44.9829V17.4933C14.566 15.4231 16.2485 13.7448 18.324 13.7448H66.7079C68.0915 13.7448 69.2132 12.6259 69.2132 11.2457V2.49905C69.2132 1.11886 68.0915 0 66.7079 0H18.4806C8.79504 0 0.943359 7.83203 0.943359 17.4933V45.3504C0.943359 51.3155 3.31893 57.0363 7.54747 61.2543L28.3452 82V70.9105C28.3452 69.5303 29.4669 68.4114 30.8506 68.4114H53.3984C54.7821 68.4114 55.9037 67.2926 55.9037 65.9124Z\",\"fill\":\"var(--color-logo-mark)\"}]]}],[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:1:props:children:1:props:children:1:props:children:props:children:1: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:1:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:1:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:1:props:children:1:props:children:1:props:children:props:children:1:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}]\n"])</script><script>self.__next_f.push([1,"f:[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}]\n10:[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$13\",null,{\"children\":[\"$\",\"$L14\",null,{}]}],null,[\"$\",\"$L15\",null,{\"children\":[\"$L16\",[\"$\",\"$L17\",null,{\"promise\":\"$@18\"}]]}]]}]\n11:[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$L19\",null,{\"children\":\"$L1a\"}],null],[\"$\",\"$L1b\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$13\",null,{\"fallback\":null,\"children\":\"$L1c\"}]}]}]]}]\n"])</script><script>self.__next_f.push([1,"1a:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n16:null\n"])</script><script>self.__next_f.push([1,"1d:I[622,[],\"IconMark\"]\n18:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Sign In - Glaido\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Dictation app\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/images/favicon/favicon.svg\"}],[\"$\",\"$L1d\",\"3\",{}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"1c:\"$18:metadata\"\n"])</script></body></html> | Unknown directive |
To appear in search results, crawlers need access to your app.