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.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Layout shifts occur when elements move absent any user interaction. Investigate the causes of layout shifts, such as elements being added, removed, or their fonts changing as the page loads.
Performance issues directly impact user engagement and conversion rates.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
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.
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
These are the largest layout shifts observed on the page. Each table item represents a single layout shift, and shows the element that shifted the most. Below each item are possible root causes that led to the layout shift. Some of these layout shifts may not be included in the CLS metric value due to windowing. Learn how to improve CLS
Performance issues directly impact user engagement and conversion rates.
| Element | Layout shift score |
|---|---|
Privacy Policy | Tracker Details Page
Powered by:
div.wrapper > div > div.footer | 0.058 |
Privacy Policy | Tracker Details Page
Powered by:
div.wrapper > div > div.footer | 0.049 |
Privacy Policy | Tracker Details Page
Powered by:
div.wrapper > div > div.footer | 0.021 |
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
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
Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /etc.clientlibs/dupont-foundation/clientlibs/clientlib-gl... | 770.6 KiB | 247.1 KiB |
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /etc.clientlibs/dupont-foundation/clientlibs/clientlib-gl... | 461.9 KiB | 457.2 KiB |
| /etc.clientlibs/dupont-applications/corporate/clientlibs/... | 22.0 KiB | 21.1 KiB |
| use.fontawesome.com/releases/v5.7.2/css/all.css | 12.3 KiB | 12.2 KiB |
| /etc.clientlibs/dupont-foundation/clientlibs/clientlib-de... | 12.5 KiB | 12.1 KiB |
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 |
|---|---|---|
| /etc.clientlibs/dupont-foundation/clientlibs/clientlib-gl... | 770.2 KiB | 581.0 KiB |
| /etc.clientlibs/dupont-foundation/clientlibs/clientlib-de... | 128.5 KiB | 77.7 KiB |
| www.dupont.com/etc.clientlibs/clientlibs/granite/jquery-ui.min.js | 68.4 KiB | 61.3 KiB |
| /etc.clientlibs/dupont-applications/corporate/clientlibs/... | 72.5 KiB | 55.1 KiB |
| assets.adobedtm.com/21fa3c337531/9dd4b1d7bd35/launch-025f15007675.min.js | 140.0 KiB | 36.5 KiB |
| /21fa3c337531/9dd4b1d7bd35/0d2338c12f6a/EXde23dab7ffdd43f... | 35.3 KiB | 29.4 KiB |
| www.dupont.com/etc.clientlibs/clientlibs/granite/jquery.min.js | 34.7 KiB | 23.7 KiB |
| consent.trustarc.com/asset/adv-bundle.js?v=v1.7-1729 | 77.8 KiB | 21.2 KiB |
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
| URL | Total CPU Time | Script Evaluation | Script Parse |
|---|---|---|---|
| /etc.clientlibs/dupont-foundation/clientlibs/clientlib-de... | 2.4 s | 1.9 s | 43 ms |
| assets.adobedtm.com/21fa3c337531/9dd4b1d7bd35/launch-025f15007675.min.js | 1.1 s | 899 ms | 107 ms |
| www.dupont.com/ | 1.0 s | 37 ms | 4.8 ms |
| /etc.clientlibs/dupont-foundation/clientlibs/clientlib-gl... | 969 ms | 451 ms | 379 ms |
| Unattributable | 890 ms | 4.6 ms | 0.0 ms |
| consent.trustarc.com/asset/adv-bundle.js?v=v1.7-1729 | 206 ms | 157 ms | 1.5 ms |
| consent.trustarc.com/asset/notice.js/v/v1.7-1729 | 125 ms | 86 ms | 11 ms |
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 3.7 s |
| Other | 1.6 s |
| Style & Layout | 640 ms |
| Script Parsing & Compilation | 631 ms |
| Rendering | 183 ms |
| Parse HTML & CSS | 158 ms |
| Garbage Collection | 120 ms |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| The page has an unload handler in the main frame. | Actionable |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
Dupont nav > div.component-navigation--logo > a.navigation-logo > img | /content/dam/dupont/global-assets/logos/DuPont_logo_140x5... |
ul.component-navigation--items-bottom > li > a.search > img ul.component-navigation--items-bottom > li > a.search > img | www.dupont.com/content/dam/dupont/amer/us/en/corporate/general/icons/search.png |
ul > li > a > img ul > li > a > img | /content/dam/dupont/amer/us/en/corporate/general/icons/ic... |
div.component-navigation--logo > div#userMobileIcon > a#profileNavTrigger > img.non_login_user div.component-navigation--logo > div#userMobileIcon > a#profileNavTrigger > img.non_login_user | /content/dam/dupont/amer/us/en/corporate/general/icons/no... |
We put safety & respect first div.list-item > div.list-container > div.card-image > img | |
We act with integrity & accountability div.list-item > div.list-container > div.card-image > img | |
We grow & improve every day div.list-item > div.list-container > div.card-image > img | |
We solve problems for customers div.list-item > div.list-container > div.card-image > img |
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.
Contrast
Low-contrast text is difficult or impossible for many users to read. Learn how to provide sufficient color contrast.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Legal Notices & Terms of Use div.col-sm-12 > ul.footer-list-legal > li > a |
Privacy div.col-sm-12 > ul.footer-list-legal > li > a |
Site Map div.col-sm-12 > ul.footer-list-legal > li > a |
Accessibility div.col-sm-12 > ul.footer-list-legal > li > a |
ACCEPT ALL div.mainContent > div > div.pdynamicbutton > a.call |
REJECT ALL div.mainContent > div > div.pdynamicbutton > a.required |
MANAGE COOKIES » div.mainContent > div > div.pdynamicbutton > a.shp |
Privacy Policy div > div.footer > div.left > a#privacyPolicyAnchor |
Tracker Details Page div > div.footer > div.left > a |
Powered by div > div.footer > div.right > label |
These are opportunities to improve the legibility of your content.
Navigation
A value greater than 0 implies an explicit navigation ordering. Although technically valid, this often creates frustrating experiences for users who rely on assistive technologies. Learn more about the `tabindex` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
body#corporate-editable-page-4a98861a6d > div#pop-div2012639048716905332 > div#pop-div303983712242929486 > div#pop-frame06179396321046385 body#corporate-editable-page-4a98861a6d > div#pop-div2012639048716905332 > div#pop-div303983712242929486 > div#pop-frame06179396321046385 |
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
We put safety & respect first div.row > div.list-item > div.list-container > h5.full |
Browse our brands & products div.list-item > div.card-image > div.card-text > h5 |
These are opportunities to improve keyboard navigation in your application.
Names and labels
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.component-navigation--logo > div#userMobileIcon > a#profileNavTrigger > img.non_login_user div.component-navigation--logo > div#userMobileIcon > a#profileNavTrigger > img.non_login_user |
ul.component-navigation--items-bottom > li > a.search > img ul.component-navigation--items-bottom > li > a.search > img |
div.owl-item > div.card-view > div.row > img.OF-cover div.owl-item > div.card-view > div.row > img.OF-cover |
div.owl-item > div.card-view > div.row > img.OF-cover div.owl-item > div.card-view > div.row > img.OF-cover |
div.owl-item > div.card-view > div.row > img.OF-cover div.owl-item > div.card-view > div.row > img.OF-cover |
div.owl-item > div.card-view > div.row > img.OF-cover div.owl-item > div.card-view > div.row > img.OF-cover |
div.owl-item > div.card-view > div.row > img.OF-cover div.owl-item > div.card-view > div.row > img.OF-cover |
div.owl-item > div.card-view > div.row > img.OF-cover div.owl-item > div.card-view > div.row > img.OF-cover |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
Labels ensure that form controls are announced properly by assistive technologies, like screen readers. Learn more about form element labels.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
nav > div.component-navigation--logo > div.hamburger > input nav > div.component-navigation--logo > div.hamburger > input |
Link text (and alternate text for images, when used as links) that is discernible, unique, and focusable improves the navigation experience for screen reader users. Learn how to make links accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
nav > div.component-navigation--logo > div#userMobileIcon > a#profileNavTrigger nav > div.component-navigation--logo > div#userMobileIcon > a#profileNavTrigger |
div.col-sm-12 > ul > li > a div.col-sm-12 > ul > li > a |
div > div.footer > div.right > a div > div.footer > div.right > a |
These are opportunities to improve the semantics of the controls in your application. This may enhance the experience for users of assistive technology, like a screen reader.
Tables and lists
Screen readers have a specific way of announcing lists. Ensuring proper list structure aids screen reader output. Learn more about proper list structure.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Search
Product Finder
English div.container > nav > div.component-navigation--items > ul.component-navigation--items-bottom |
Legal Notices & Terms of Use
Privacy
Site Map
Accessibility
Cookie Preferences div.container > div#margin-top > div.col-sm-12 > ul.footer-list-legal |
These are opportunities to improve the experience of reading tabular or list data using assistive technology, like a screen reader.
Best Practices
General
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| Unload event listeners are deprecated and will be removed. | /etc.clientlibs/dupont-applications/corporate/clientlibs/... line 268, col 438 |
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
/etc.clientlibs/dupont-foundation/clientlibs/clientlib-de... line 57, col 299 | Error: Syntax error, unrecognized expression: .
at g.error (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-dependencies.min.js:58:300)
at g.tokenize (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-dependencies.min.js:71:6)
at g.select (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-dependencies.min.js:71:291)
at v.g [as find] (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-dependencies.min.js:33:72)
at v.fn.init.find (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-dependencies.min.js:76:151)
at new v.fn.init (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-dependencies.min.js:77:135)
at v (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-dependencies.min.js:25:411)
at hiddenFeildsRoleidAddition (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-global.min.js:72048:13)
at HTMLDocument.<anonymous> (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-global.min.js:71991:3)
at ib (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-dependencies.min.js:85:271) |
Failed to load resource: the server responded with a status of 404 () | |
Failed to load resource: the server responded with a status of 404 () | |
Failed to load resource: the server responded with a status of 404 () | |
/etc.clientlibs/dupont-foundation/clientlibs/clientlib-de... line 87, col 498 | TypeError: Cannot read properties of undefined (reading 'bulink')
at HTMLDocument.<anonymous> (https://www.dupont.com/etc.clientlibs/dupont-applications/corporate/clientlibs/clientlib-base.min.js:18:74)
at ib (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-dependencies.min.js:85:271)
at ub (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-dependencies.min.js:86:117) |
/etc.clientlibs/dupont-foundation/clientlibs/clientlib-de... line 87, col 498 | TypeError: Cannot read properties of undefined (reading 'indexOf')
at HTMLDocument.<anonymous> (https://www.dupont.com/etc.clientlibs/dupont-applications/corporate/clientlibs/clientlib-base.min.js:559:245)
at ib (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-dependencies.min.js:85:271)
at ub (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-dependencies.min.js:86:117) |
/etc.clientlibs/dupont-foundation/clientlibs/clientlib-de... line 87, col 498 | TypeError: Cannot read properties of undefined (reading 'indexOf')
at HTMLDocument.<anonymous> (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-global.min.js:71901:25)
at ib (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-dependencies.min.js:85:271)
at ub (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-dependencies.min.js:86:117) |
/etc.clientlibs/dupont-foundation/clientlibs/clientlib-de... line 87, col 498 | TypeError: Cannot read properties of undefined (reading 'style')
at showSlides (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-global.min.js:65088:34)
at HTMLDocument.<anonymous> (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-global.min.js:65065:9)
at ib (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-dependencies.min.js:85:271)
at ub (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-dependencies.min.js:86:117) |
/etc.clientlibs/dupont-foundation/clientlibs/clientlib-de... line 87, col 498 | TypeError: Failed to execute 'observe' on 'MutationObserver': parameter 1 is not of type 'Node'.
at HTMLDocument.<anonymous> (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-global.min.js:67141:12)
at ib (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-dependencies.min.js:85:271)
at ub (https://www.dupont.com/etc.clientlibs/dupont-foundation/clientlibs/clientlib-dependencies.min.js:86:117) |
Source maps translate minified code to the original source code. This helps developers debug in production. In addition, Lighthouse is able to provide further insights. Consider deploying source maps to take advantage of these benefits. Learn more about source maps.
Performance issues directly impact user engagement and conversion rates.
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.
Content Best Practices
Descriptive link text helps search engines understand your content. Learn how to make links more accessible.
Performance issues directly impact user engagement and conversion rates.
Informative elements should aim for short, descriptive alternate text. Decorative elements can be ignored with an empty alt attribute. Learn more about the `alt` attribute.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.component-navigation--logo > div#userMobileIcon > a#profileNavTrigger > img.non_login_user div.component-navigation--logo > div#userMobileIcon > a#profileNavTrigger > img.non_login_user |
ul.component-navigation--items-bottom > li > a.search > img ul.component-navigation--items-bottom > li > a.search > img |
div.owl-item > div.card-view > div.row > img.OF-cover div.owl-item > div.card-view > div.row > img.OF-cover |
div.owl-item > div.card-view > div.row > img.OF-cover div.owl-item > div.card-view > div.row > img.OF-cover |
div.owl-item > div.card-view > div.row > img.OF-cover div.owl-item > div.card-view > div.row > img.OF-cover |
div.owl-item > div.card-view > div.row > img.OF-cover div.owl-item > div.card-view > div.row > img.OF-cover |
div.owl-item > div.card-view > div.row > img.OF-cover div.owl-item > div.card-view > div.row > img.OF-cover |
div.owl-item > div.card-view > div.row > img.OF-cover div.owl-item > div.card-view > div.row > img.OF-cover |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
ul > li > a > img ul > li > a > img |
Format your HTML in a way that enables crawlers to better understand your app’s content.
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 |
|---|
nav > div.component-navigation--logo > div#userMobileIcon > a#profileNavTrigger nav > div.component-navigation--logo > div#userMobileIcon > a#profileNavTrigger |
Industries & Solutions ul.component-navigation--items-top > li > div.navigation-item-contain > a.navigation-item |
Industries & Solutions div.nav-sub-items > ul > li > a.navigation-item |
div.nav-sub-items > ul > li > a.navigation-item div.nav-sub-items > ul > li > a.navigation-item |
div.nav-sub-items > ul.cols-2 > li.crprate-hide-for-desk > a.cta-red div.nav-sub-items > ul.cols-2 > li.crprate-hide-for-desk > a.cta-red |
div.nav-sub-items > ul.cols-2 > li.crprate-hide-for-desk > a.cta-red div.nav-sub-items > ul.cols-2 > li.crprate-hide-for-desk > a.cta-red |
div.nav-sub-items > ul.cols-2 > li.crprate-hide-for-desk > a.cta-red div.nav-sub-items > ul.cols-2 > li.crprate-hide-for-desk > a.cta-red |
div.nav-sub-items > ul.cols-2 > li.crprate-hide-for-desk > a.cta-red div.nav-sub-items > ul.cols-2 > li.crprate-hide-for-desk > a.cta-red |
div.nav-sub-items > ul.cols-2 > li.crprate-hide-for-desk > a.cta-red div.nav-sub-items > ul.cols-2 > li.crprate-hide-for-desk > a.cta-red |
div.nav-sub-items > ul.cols-2 > li.crprate-hide-for-desk > a.cta-red div.nav-sub-items > ul.cols-2 > li.crprate-hide-for-desk > a.cta-red |
div.nav-sub-items > ul.cols-2 > li.crprate-hide-for-desk > a.cta-red div.nav-sub-items > ul.cols-2 > li.crprate-hide-for-desk > a.cta-red |
ul > li > div.nav-sub-items > a.cta-red ul > li > div.nav-sub-items > a.cta-red |
div.nav-sub-items > ul > li > a.navigation-item div.nav-sub-items > ul > li > a.navigation-item |
ul > li > div.nav-sub-items > a.cta-red ul > li > div.nav-sub-items > a.cta-red |
Brands & Products div.nav-sub-items > ul > li > a.navigation-item |
div.nav-sub-items > ul.cols-1 > li.crprate-hide-for-desk > a.cta-red div.nav-sub-items > ul.cols-1 > li.crprate-hide-for-desk > a.cta-red |
div.nav-sub-items > ul.cols-1 > li.crprate-hide-for-desk > a.cta-red div.nav-sub-items > ul.cols-1 > li.crprate-hide-for-desk > a.cta-red |
ul > li > div.nav-sub-items > a.cta-red ul > li > div.nav-sub-items > a.cta-red |
div.navigation-sub > div.nav-sub-items > p.helper > a div.navigation-sub > div.nav-sub-items > p.helper > a |
div.component-navigation--items > ul.component-navigation--items-bottom > li.nav-user-icon > a.useravtarcurpage |
div.col-sm-12 > ul > li > a div.col-sm-12 > ul > li > a |
div.col-sm-12 > ul > li > a div.col-sm-12 > ul > li > a |
div.col-sm-12 > ul > li > a div.col-sm-12 > ul > li > a |
div.col-sm-12 > ul > li > a div.col-sm-12 > ul > li > a |
To appear in search results, crawlers need access to your app.