Mobile 375 × 812

Desktop 1440 × 900

Score: 69 / 100
Based on 8 categories, 0 sections
Room to improve — your 10.8s load time is above Google's 2.5s 'Good' threshold.
Several missing protections leave your users and data exposed.
Several issues make your site difficult for assistive technology users.
Missing signals may be hurting your search visibility.
Good server performance with room for optimization.
Mostly compliant — a few items need attention.
Missing metadata means poor previews on social media and search.
Reasonable footprint with room for optimization.
The overall score is a weighted average of individual category scores. Categories with more impact on user experience and security carry more weight.
Weights reflect general web best practices. Individual needs may differ.
Content-Security-Policy header is missing
Security gaps expose your site and users to attacks, eroding trust.
No Content-Security-Policy header found
Security gaps expose your site and users to attacks, eroding trust.
Page weighs 9.4 MB (5.0 MB transferred)
Performance issues directly impact user engagement and conversion rates.
207 third-party resources (100% of weight)
Performance issues directly impact user engagement and conversion rates.
208 HTTP requests — consider bundling or reducing
Performance issues directly impact user engagement and conversion rates.
High impact, low effort — start here.
High impact, requires investment.
Small gains, minimal effort.
Nothing in this quadrant — good news.
Low impact, high effort — do last.
Nothing in this quadrant — good news.
[](https://beavercheck.com/results/e9293774-8a05-4f35-a0d2-e78fea228cf3)<a href="https://beavercheck.com/results/e9293774-8a05-4f35-a0d2-e78fea228cf3"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Fredbubble.com" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Fredbubble.comThis badge auto-updates with your latest scan result.
Your site has several issues that may be affecting user experience and business outcomes. Your LCP of 10.8s exceeds Google's 2.5s 'Good' threshold and the 3 performance issues below directly contribute to it. Addressing the critical issues below would have the most immediate impact on your user trust.
8 barrier(s) likely increasing bounce by ~30%.
Page takes 10.8s to load
+12% bounceUsers abandon at ~3s — you're 8.3s over the 2.5s threshold
Fix: Optimize render-blocking resources, preload the hero image, and compress images
Page feels frozen for 2.7s
+5% bounceClicks on the primary CTA are ignored while JavaScript runs
Fix: Break up long tasks; defer non-critical JavaScript to post-hydration
No HSTS header
+1% bounceReturning visitors are briefly exposed to downgrade attacks on first request
Fix: Set Strict-Transport-Security: max-age=31536000; includeSubDomains
No Content-Security-Policy header
+1% bounceHigher XSS blast radius — one compromised script can exfiltrate the checkout form
Fix: Ship a reporting-only CSP first, then enforce once violations are clean
No Open Graph tags
+2% bounceLinks shared on LinkedIn / Slack / Facebook show bare URLs — referral clicks drop
Fix: Add og:title, og:description, og:image, og:url to the page head
No structured data
+2% bounceNo rich-result eligibility in Google — lower SERP CTR vs competitors with stars and prices
Fix: Add JSON-LD for your page type (Product, Article, FAQPage, LocalBusiness, …)
Thin content
+3% bounceUnder 300 words — visitors bounce looking for substance, search engines rank competitors first
Fix: Add a substantive FAQ, product detail, or case-study section
No skip-to-content link
+1% bounceKeyboard and screen-reader users must tab through the entire header on every page
Fix: Add a visible-on-focus <a href="#main">Skip to content</a> as the first focusable element
Preliminary CRO audit — each barrier links to the tab with detailed analysis.
$700 investment → $4,205/month returns + USD 150,000 risk avoided
$700
7h · 5 findings
$4,205 /mo
~$50,465 / year
USD 150,000
if kept compliant
$100 — in quick wins — start here for the fastest payback
Figures combine localized regulatory fine ceilings, search/conversion value priced against local CPC, and bandwidth waste estimates. Results depend on implementation quality and audience composition. Not legal or financial advice.
7.0 developer hours at $100/hr
Based on United States rates ($100/hr)
Start here for the best return on investment
$12,501 / month at risk
~$150,015 / year if left unfixed
$150,000
$1.27 /mo
15882.4 MB/mo × 0.080 USD/GB
Compliance figures represent the statutory maximum fine for the most severe triggered category, capped per regulation — not the sum of per-finding penalties. Based on published regulatory fine ranges. This is not legal advice.
Unique monthly visitors from your analytics
Purchases, signups, or key actions
Optional — for revenue estimation
more engaged visitors from reduced bounce
Fix 3 critical issues to capture this value
Based on Google/Deloitte research ("Milliseconds Make Millions") showing a ~7% bounce rate increase per additional second of LCP above the 2.5s "Good" threshold.
Your site's LCP: → estimated after fixes.
These are estimates based on industry research — actual results vary
Your data stays in your browser — nothing is sent to our servers
Thanks for your feedback!
We'll use a cached audit if available, or offer to scan.
Industry-standard audits powered by Google Lighthouse.
Key metrics that affect user experience.
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
2.58 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
10.80 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
2.74 s
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.005
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
6.65 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
24.62 s
Audit breakdown by category with detailed findings.
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
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
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.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
katherineblower div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6111152304.4967/flat,750x1000,075,t.jpg | 243.8 KiB | 211.6 KiB |
Loki Propagandart div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6096883598.6331/flat,750x,075,f-pad,750x1000,f8f8f8.jpg | 238.1 KiB | 206.0 KiB |
Samsung Galaxy S26 Cases div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/NTPFBw7SgcC28LCgk6Trs/cfbec5380f62bf3fd5c4e... | 123.9 KiB | 101.9 KiB |
Earth Month Art div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/6Ml3zNlN7CsecP7N6zL7fM/fc4233af2caf5f7f9ff3... | 119.2 KiB | 97.2 KiB |
FifthSun div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.5947929477.2680/raf,750x1000,075,t,101010:01c5ca27c6.jpg | 119.7 KiB | 87.6 KiB |
Item preview, Speed Runner designed and sold by flooko. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.6117696481.7460/flat,500x,075,f.u8.jpg | 93.7 KiB | 77.8 KiB |
Global Artists div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/2BjdktTOE8hvY2Y4Op2HMa/cfa2a875aa7ef9d74ec0... | 98.5 KiB | 76.5 KiB |
flooko div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6109921484.9490/flat,750x,075,f-pad,750x1000,f8f8f8.jpg | 101.6 KiB | 69.4 KiB |
Item preview, The High Priestess - Possum Tarot designed and sold by Thiago Cor… div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih0.redbubble.net/image.6117781001.0260/flat,500x,075,f.u18.jpg | 84.8 KiB | 66.7 KiB |
Item preview, Dearest Dandelion designed and sold by Renea L Thull. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.6118394903.0994/flat,500x,075,f.u8.jpg | 85.5 KiB | 66.3 KiB |
Posters div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/6FPKqkvcMM4KwOhAZJ5mld/5b6b4f1c5a27de1e80e0... | 88.4 KiB | 63.4 KiB |
Stickers div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/7fdzXVwo3YN6oje53lg8mq/2c4e908d9e81841c1081... | 81.7 KiB | 56.7 KiB |
Home & Living div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/10jemtyJn051X2t9utkkHl/116f279cc7cc37d2a71b... | 76.8 KiB | 54.8 KiB |
Item preview, Neon Cyberpunk robot art designed and sold by Blackout Brother. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.6117917442.5153/flat,500x,075,f.u3.jpg | 65.8 KiB | 53.0 KiB |
Phone Cases div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/76fG8AQAKla6hlT2NHM3Ou/8f3b719e55835e5974e2... | 69.6 KiB | 48.3 KiB |
Item preview, Zinnia Bliss (pink/olive/stormy blue) designed and sold by Esthe… div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6088793805.3646/tb,840x840,medium-c,1,198,600,600-... | 61.3 KiB | 48.1 KiB |
Item preview, Wandering Planet designed and sold by endmion1. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.6117611117.4624/flat,500x,075,f.u1.jpg | 62.2 KiB | 46.3 KiB |
TechraNova div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6093919512.0994/flat,750x,075,f-pad,750x1000,f8f8f8.jpg | 70.6 KiB | 45.8 KiB |
New Arrivals div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/11LlJaLQmkhkkDVgT0CikQ/f7df098791c5bd8b2f09... | 67.3 KiB | 44.3 KiB |
NemiMakeit div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6108859919.2071/flat,750x,075,f-pad,750x1000,f8f8f8.jpg | 65.6 KiB | 42.5 KiB |
Item preview, Feliform Person designed and sold by Colordrilos. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.5828992646.3701/st,small,507x507-pad,600x600,f8f8f8.jpg | 52.2 KiB | 40.8 KiB |
div.branch-banner-content > div.branch-banner-left > div.branch-banner-icon > img div.branch-banner-content > div.branch-banner-left > div.branch-banner-icon > img | /branch-assets/journeys/banner-banner-rbappicon-150838919... | 41.0 KiB | 40.1 KiB |
Item preview, Gardening Till the End - Color designed and sold by Atomic-Charm. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.5818082242.5332/st,small,507x507-pad,600x600,f8f8f8.jpg | 51.2 KiB | 40.1 KiB |
Item preview, Enjoy The Pure Universe designed and sold by GlauciaSouEu. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.5939102266.0541/ssrco,graphic_tee,mens_01,101010:0... | 50.4 KiB | 39.4 KiB |
T-Shirts div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/4ybfvmFzZQ5UsxS0mKEIZI/87d0fcb0a8c2a64a93e9... | 56.4 KiB | 37.2 KiB |
Item preview, "Maybe Take it Easy" Twilight Pegasus designed and sold by thelat… div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.6117147947.7851/flat,500x,075,f.u4.jpg | 49.0 KiB | 36.2 KiB |
Item preview, Cute Outlet designed and sold by lucy-itoko. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.5812242075.9636/tb,840x840,medium-c,1,198,600,600-... | 47.4 KiB | 36.0 KiB |
Item preview, nipo designed and sold by aepoyi. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.5568377699.2339/ssrco,fitted_scoop_tee,womens_01,f... | 44.1 KiB | 34.5 KiB |
Item preview, Spill the tea - retro hand lettering - green and purple designed … div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6038222259.3076/ssrco,graphic_tee,mens_01,101010:0... | 43.1 KiB | 33.7 KiB |
Item preview, Grow Food, Grow Community designed and sold by WyrdandWoven. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.5803196496.5978/papergc,300x,w,f8f8f8-pad,600x600,... | 41.5 KiB | 32.5 KiB |
vonKowen div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6108617603.3413/flat,750x,075,f-pad,750x1000,f8f8f8.jpg | 48.1 KiB | 31.2 KiB |
Item preview, Brown Bear Guitar designed and sold by theladyernestember. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.6108711414.6541/scarf,x630-pad,600x600,f8f8f8.jpg | 38.5 KiB | 30.1 KiB |
Item preview, Snowman designed and sold by opifan. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6065788124.5125/ssrco,fitted_scoop_tee,womens_01,h... | 37.3 KiB | 29.2 KiB |
Item preview, Bold and Colorful Abstract Wild Stripes Modern Multicolor Pattern… div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.5815562394.0316/st,small,507x507-pad,600x600,f8f8f8.jpg | 34.2 KiB | 26.8 KiB |
Gift Cards div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/2GjfaIQj7UyEliPJHHlPmg/021719ee25ac96088358... | 37.5 KiB | 26.0 KiB |
Item preview, I'm not a morning person designed and sold by GeoCreate. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.6063159379.7558/st,small,507x507-pad,600x600,f8f8f8.jpg | 31.5 KiB | 24.7 KiB |
Item preview, The frog summoner designed and sold by Rihnlin. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.5810603607.5010/papergc,300x,w,f8f8f8-pad,600x600,... | 29.1 KiB | 22.8 KiB |
Retro Gaming div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/6nbfND0mfdn2ydwzSIySYh/ae7f01fa8ebc96b49356... | 56.7 KiB | 22.1 KiB |
Item preview, Resist Persist Cat designed and sold by lauragraves. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6087698893.6030/ls,13inch,x600-c,90,0,600,600-bg,f... | 27.3 KiB | 21.3 KiB |
Item preview, Moss I wake up? designed and sold by Fairydrop. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6088604946.7943/fp,504x498,black,off_white,box20,s... | 26.3 KiB | 20.6 KiB |
Item preview, Book and Tea at the Library designed and sold by hwainio. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.5808476131.3849/tb,840x840,small-c,1,198,600,600-b... | 24.1 KiB | 18.3 KiB |
Deals div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/5WG07ebuAdrfNsGwxIdwng/6836c7db0619db75ed5a... | 50.5 KiB | 16.0 KiB |
Item preview, How to Split Pug designed and sold by Huebucket. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6086236330.5240/paperpc,450x,w,f8f8f8-pad,600x600,... | 17.6 KiB | 13.8 KiB |
Item preview, Dearest Dandelion designed and sold by Renea L Thull. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6118394894.0994/mug,standard,x334,right-pad,600x60... | 16.8 KiB | 13.1 KiB |
Item preview, Midnight Muse: The Dance of Sisterhood designed and sold by 83ora… div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6109520416.5642/mug,tall,x334,right-pad,600x600,f8... | 16.0 KiB | 12.5 KiB |
Item preview, Riddles of the Sphinx designed and sold by flaroh. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6109137497.1985/papergc,300x,w,f8f8f8-pad,600x600,... | 14.6 KiB | 11.4 KiB |
Avatar for Steven Rhodes div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c | ih0.redbubble.net/avatar.1433098.140x140.jpg | 13.8 KiB | 10.6 KiB |
Avatar for flaroh div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c | ih0.redbubble.net/avatar.4986275.140x140.jpg | 13.0 KiB | 9.8 KiB |
Item preview, Pink party t-rex with boa and party hat designed and sold by Ilze… div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6063488242.8114/paperpc,450x,w,f8f8f8-pad,600x600,... | 12.1 KiB | 9.4 KiB |
katherineblower div.styles_slideInner__b054f308 > div.styles_card__6246181b > div.ArtistCard_artistCardBody__NcmJP > img.styles_image__29f3202c | ih1.redbubble.net/avatar.10735073.140x140.jpg | 11.0 KiB | 9.2 KiB |
vonKowen div.styles_slideInner__b054f308 > div.styles_card__6246181b > div.ArtistCard_artistCardBody__NcmJP > img.styles_image__29f3202c | ih1.redbubble.net/avatar.10433559.140x140.jpg | 10.7 KiB | 8.9 KiB |
Item preview, You are a better artist than any AI text designed and sold by The… div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6078646257.3329/paperpc,450x,w,f8f8f8-pad,600x600,... | 11.1 KiB | 8.7 KiB |
TechraNova div.styles_slideInner__b054f308 > div.styles_card__6246181b > div.ArtistCard_artistCardBody__NcmJP > img.styles_image__29f3202c | ih0.redbubble.net/avatar.5862437.140x140.jpg | 10.4 KiB | 8.6 KiB |
Fan Art Merch a.styles_link__4a3f593d > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 | d23mnqickg7hnq.cloudfront.net/images/fan-art-smol.jpg | 18.4 KiB | 8.3 KiB |
flooko div.styles_slideInner__b054f308 > div.styles_card__6246181b > div.ArtistCard_artistCardBody__NcmJP > img.styles_image__29f3202c | ih1.redbubble.net/avatar.9314974.140x140.jpg | 9.4 KiB | 7.6 KiB |
Avatar for keyvei div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c | ih0.redbubble.net/avatar.9914690.140x140.jpg | 10.1 KiB | 6.9 KiB |
Loki Propagandart div.styles_slideInner__b054f308 > div.styles_card__6246181b > div.ArtistCard_artistCardBody__NcmJP > img.styles_image__29f3202c | ih0.redbubble.net/avatar.3997222.140x140.jpg | 8.7 KiB | 6.9 KiB |
Stickers div.styles_box__54ba70e3 > a.styles_link__4a3f593d > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 | d23mnqickg7hnq.cloudfront.net/images/stickers-extrasmol.jpg | 8.7 KiB | 6.8 KiB |
NemiMakeit div.styles_slideInner__b054f308 > div.styles_card__6246181b > div.ArtistCard_artistCardBody__NcmJP > img.styles_image__29f3202c | ih1.redbubble.net/avatar.10217761.140x140.jpg | 7.8 KiB | 6.0 KiB |
Gift ideas a.styles_link__4a3f593d > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 | d23mnqickg7hnq.cloudfront.net/images/gift-ideas-smol.jpg | 15.7 KiB | 5.6 KiB |
Avatar for DingHuArt div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c | ih0.redbubble.net/avatar.8052684.140x140.jpg | 8.7 KiB | 5.5 KiB |
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.
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.
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
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.
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 |
|---|---|
| redbubble.com/ | 805 ms |
| www.redbubble.com/ | 0.0 ms |
Keep the server response time for the main document short because all other requests depend on it. Learn more about the Time to First Byte metric.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| www.redbubble.com/ | 814 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.
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 |
|---|---|---|
| www.redbubble.com/frontend-static/_next/static/css/9cc30eda45613c82.css | 57.9 KiB | 50.3 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.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| /frontend-static/_next/static/chunks/pages/_app-01d2335b5... | 261.5 KiB | 117.9 KiB |
| /gtag/js?id=G-QB79Q66SYP&cx=c>m=4e64k0h2&sign=e3fa700e7... | 169.5 KiB | 63.9 KiB |
| analytics-gtm.redbubble.com/gtm.js?id=GTM-9R9D | 188.4 KiB | 61.0 KiB |
| consent.cookiebot.com/Framework/IAB/consent-sdk-2.3.js | 87.7 KiB | 57.3 KiB |
| analytics.tiktok.com/i18n/pixel/static/main.MWE0ZWQ3ZWQwMQ.js | 108.9 KiB | 54.6 KiB |
| www.redbubble.com/frontend-static/_next/static/chunks/3484-5bb58abf89c8123c.js | 55.4 KiB | 42.9 KiB |
| cdn.attn.tv/tag/2026-latest/unified-tag.js?v=2026-latest_937e08ccfb0 | 49.0 KiB | 28.5 KiB |
| www.redbubble.com/frontend-static/_next/static/chunks/main-b5c97787844ac572.js | 46.9 KiB | 25.2 KiB |
| /frontend-static/_next/static/chunks/c79f2fb3.d70468dd6b6... | 48.6 KiB | 22.5 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.
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 | 6.0 s |
| Other | 3.5 s |
| Rendering | 2.1 s |
| Style & Layout | 1.7 s |
| Script Parsing & Compilation | 759 ms |
| Garbage Collection | 234 ms |
| Parse HTML & CSS | 89 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 |
|---|---|
| Pages with cache-control:no-store header cannot enter back/forward cache. | Actionable |
| Pages whose main resource has cache-control:no-store cannot enter back/forward cache. | Not actionable |
| Back/forward cache is disabled because some JavaScript network request received resource with Cache-Control: no-store header. | Not 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 | |
|---|---|
Loki Propagandart div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6096883598.6331/flat,750x,075,f-pad,750x1000,f8f8f8.jpg |
FifthSun div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.5947929477.2680/raf,750x1000,075,t,101010:01c5ca27c6.jpg |
NemiMakeit div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6108859919.2071/flat,750x,075,f-pad,750x1000,f8f8f8.jpg |
TechraNova div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6093919512.0994/flat,750x,075,f-pad,750x1000,f8f8f8.jpg |
vonKowen div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6108617603.3413/flat,750x,075,f-pad,750x1000,f8f8f8.jpg |
flooko div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6109921484.9490/flat,750x,075,f-pad,750x1000,f8f8f8.jpg |
katherineblower div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6111152304.4967/flat,750x1000,075,t.jpg |
Get it on Google Play ul.styles_list__7e0826d8 > li.styles_listItem__7e0826d8 > a > img.styles_image__29f3202c | |
div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c | www.redbubble.com/frontend-static/_next/static/media/ic_art.b28c2af2.svg |
div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c | www.redbubble.com/frontend-static/_next/static/media/ic_thumbs-up.de769e41.svg |
div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c | www.redbubble.com/frontend-static/_next/static/media/ic_leaf.2c8ef65f.svg |
More information about the performance of your application. These numbers don't directly affect the Performance score.
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.
Each ARIA `role` supports a specific subset of `aria-*` attributes. Mismatching these invalidates the `aria-*` attributes. Learn how to match ARIA attributes to their roles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Your Lists header.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 |
View Cart header.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
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 |
|---|
Shop Schitt’s Creek merch div > div.styles_box__54ba70e3 > a.styles_button__9a62cfb3 > span.styles_children__9a62cfb3 |
Learn more
- opens in new window or tab div.styles_box__54ba70e3 > a.styles_link__2ab672d8 > span.styles_children__2ab672d8 > span.styles_box__54ba70e3 |
Learn more
- opens in new window or tab div.styles_box__54ba70e3 > a.styles_link__2ab672d8 > span.styles_children__2ab672d8 > span.styles_box__54ba70e3 |
Learn more
- opens in new window or tab div.styles_box__54ba70e3 > a.styles_link__2ab672d8 > span.styles_children__2ab672d8 > span.styles_box__54ba70e3 |
Learn more
- opens in new window or tab div.styles_box__54ba70e3 > a.styles_link__2ab672d8 > span.styles_children__2ab672d8 > span.styles_box__54ba70e3 |
Sign up div.styles_box__54ba70e3 > button.styles_button__9a62cfb3 > span.styles_children__9a62cfb3 > span.styles_box__54ba70e3 |
These are opportunities to improve the legibility of your content.
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 |
|---|
Worldwide Shipping div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > h6#worldwide-shipping |
These are opportunities to improve keyboard navigation in your application.
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.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c |
div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c |
div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c |
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.
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 |
|---|---|
| AttributionReporting |
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 |
|---|---|
A bad HTTP response code (403) was received when fetching the script. | |
Failed to load resource: net::ERR_TOO_MANY_REDIRECTS |
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.
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.
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.
| Link destination | Link Text |
|---|---|
| www.redbubble.com/explore?ref=home-explore-carousel-all | See more |
| www.redbubble.com/explore?ref=home-explore-carousel-all | See more |
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.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c |
div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c |
div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Industry-standard audits powered by Google Lighthouse. — Desktop
Key metrics that affect user experience. — Desktop
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
759 ms
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
1.87 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
302 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.000
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
1.44 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
5.32 s
Audit breakdown by category with detailed findings.
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
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
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.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
katherineblower div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6111152304.4967/flat,750x1000,075,t.jpg | 243.8 KiB | 233.3 KiB |
Loki Propagandart div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6096883598.6331/flat,750x,075,f-pad,750x1000,f8f8f8.jpg | 238.1 KiB | 227.6 KiB |
surfybirdy div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6097396232.4266/flat,750x,075,f-pad,750x1000,f8f8f8.jpg | 237.4 KiB | 226.9 KiB |
Samsung Galaxy S26 Cases div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/6tfAsDK54O4YHi0ozw2aFX/2cc0d73617850e368a76... | 162.0 KiB | 136.0 KiB |
Earth Month Art div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/1tM8AkkLSrtBPRj2IaiPtm/c4edfc07e99dbc76e9a9... | 140.1 KiB | 114.1 KiB |
FifthSun div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.5947929477.2680/raf,750x1000,075,t,101010:01c5ca27c6.jpg | 119.7 KiB | 109.2 KiB |
Item preview, Colorful abstract flowers pattern2 designed and sold by Ana Moguš. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih0.redbubble.net/image.6116415918.1649/flat,500x,075,f.u10.jpg | 109.7 KiB | 102.1 KiB |
Viviana Gonzalez div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6096503943.2972/flat,750x,075,f-pad,750x1000,f8f8f8.jpg | 109.1 KiB | 98.6 KiB |
Item preview, The Moon made me do it designed and sold by Thiago Corrêa. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih0.redbubble.net/image.6110057455.3950/flat,500x,075,f.u18.jpg | 103.1 KiB | 92.2 KiB |
flooko div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6109921484.9490/flat,750x,075,f-pad,750x1000,f8f8f8.jpg | 101.6 KiB | 91.1 KiB |
Global Artists div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/5ejIPTiGSMaVP56EY7hNW0/5e0b3f74142f2df8d9d8... | 116.7 KiB | 90.7 KiB |
Item preview, Speed Runner designed and sold by flooko. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.6117696481.7460/flat,500x,075,f.u8.jpg | 93.7 KiB | 84.2 KiB |
Rey Rey div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6095977387.4496/flat,750x1000,075,t.jpg | 91.8 KiB | 81.3 KiB |
Posters div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/2Xu24k5A13qVxRG414j7VA/d17bebe8213142fb5d90... | 105.6 KiB | 79.5 KiB |
Stickers div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/4P0QEmFR6brUSmVEZNaKBm/9af6b7feae6e2ae43f9c... | 105.0 KiB | 78.9 KiB |
Home & Living div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/7MuMCuJnEUZZzL7TGmchSp/17603cbfc956475ecde8... | 104.5 KiB | 78.4 KiB |
Item preview, Dearest Dandelion designed and sold by Renea L Thull. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.6118394903.0994/flat,500x,075,f.u8.jpg | 85.5 KiB | 74.0 KiB |
Item preview, The High Priestess - Possum Tarot designed and sold by Thiago Cor… div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih0.redbubble.net/image.6117781001.0260/flat,500x,075,f.u18.jpg | 84.8 KiB | 74.0 KiB |
New Arrivals div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/2xqgRd9bx0mQykLXmnD0BZ/943563c7e1e434eeb45d... | 89.8 KiB | 65.0 KiB |
TechraNova div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6093919512.0994/flat,750x,075,f-pad,750x1000,f8f8f8.jpg | 70.6 KiB | 62.5 KiB |
T-Shirts div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/bUmu6RBCWC5TTscquxd16/041978fd5b8a89923e2bc... | 81.5 KiB | 58.9 KiB |
NemiMakeit div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6108859919.2071/flat,750x,075,f-pad,750x1000,f8f8f8.jpg | 65.6 KiB | 58.1 KiB |
Item preview, Neon Cyberpunk robot art designed and sold by Blackout Brother. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.6117917442.5153/flat,500x,075,f.u3.jpg | 65.8 KiB | 58.1 KiB |
Phone Cases div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/4zt0wgjprgqtOeGs1PsSE4/db62e5b9cc5f82ef6777... | 78.3 KiB | 56.7 KiB |
Item preview, Zinnia Bliss (pink/olive/stormy blue) designed and sold by Esthe… div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6088793805.3646/tb,840x840,medium-c,1,198,600,600-... | 61.3 KiB | 53.4 KiB |
Item preview, Wandering Planet designed and sold by endmion1. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.6117611117.4624/flat,500x,075,f.u1.jpg | 62.2 KiB | 52.7 KiB |
Item preview, Stanis and Corinna at the Jazz Club designed and sold by Stanis t… div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.6115981269.5548/flat,500x,075,f.u3.jpg | 61.2 KiB | 51.1 KiB |
Item preview, Pom pom crabs designed and sold by pikaole. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.6116189572.2156/flat,500x,075,f.u8.jpg | 59.4 KiB | 49.8 KiB |
Deals div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/o3mGgWSj4iR9TR6tXuIW1/da8878062313a1369d2f6... | 66.2 KiB | 47.9 KiB |
Item preview, Feliform Person designed and sold by Colordrilos. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.5828992646.3701/st,small,507x507-pad,600x600,f8f8f8.jpg | 52.2 KiB | 45.3 KiB |
Item preview, Gardening Till the End - Color designed and sold by Atomic-Charm. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.5818082242.5332/st,small,507x507-pad,600x600,f8f8f8.jpg | 51.2 KiB | 44.5 KiB |
Item preview, Enjoy The Pure Universe designed and sold by GlauciaSouEu. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.5939102266.0541/ssrco,graphic_tee,mens_01,101010:0... | 50.4 KiB | 43.8 KiB |
vonKowen div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6108617603.3413/flat,750x,075,f-pad,750x1000,f8f8f8.jpg | 48.1 KiB | 42.6 KiB |
Retro Gaming div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/77Ghm0HVEP6yWfeoxMByeo/7bf055ff8c79a8a046c1... | 58.4 KiB | 42.2 KiB |
Item preview, "Maybe Take it Easy" Twilight Pegasus designed and sold by thelat… div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.6117147947.7851/flat,500x,075,f.u4.jpg | 49.0 KiB | 41.4 KiB |
Item preview, Cute Outlet designed and sold by lucy-itoko. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.5812242075.9636/tb,840x840,medium-c,1,198,600,600-... | 47.4 KiB | 40.6 KiB |
Gift Cards div.styles_box__54ba70e3 > a.Tile_imageLink__I1fwj > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/6lE4Dx9XrGGoPYqu1NKv9b/682237ac61cea78e62a3... | 55.8 KiB | 40.4 KiB |
Item preview, nipo designed and sold by aepoyi. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.5568377699.2339/ssrco,fitted_scoop_tee,womens_01,f... | 44.1 KiB | 38.3 KiB |
Item preview, Spill the tea - retro hand lettering - green and purple designed … div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6038222259.3076/ssrco,graphic_tee,mens_01,101010:0... | 43.1 KiB | 37.5 KiB |
Item preview, Grow Food, Grow Community designed and sold by WyrdandWoven. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.5803196496.5978/papergc,300x,w,f8f8f8-pad,600x600,... | 41.5 KiB | 36.1 KiB |
Item preview, Brown Bear Guitar designed and sold by theladyernestember. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.6108711414.6541/scarf,x630-pad,600x600,f8f8f8.jpg | 38.5 KiB | 33.4 KiB |
Item preview, Snowman designed and sold by opifan. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6065788124.5125/ssrco,fitted_scoop_tee,womens_01,h... | 37.3 KiB | 32.4 KiB |
Item preview, board certified baddie - doctor raccoon designed and sold by snaz… div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih0.redbubble.net/image.6119722181.3536/flat,500x,075,f.u7.jpg | 38.5 KiB | 31.3 KiB |
HandsOffMyDinosaur div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6094381879.7483/raf,750x1000,075,t,fafafa:ca443f4786.jpg | 35.0 KiB | 31.0 KiB |
Item preview, Overthinking Dragon designed and sold by Jess.a.creates. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.6079850898.3859/pr,150x100,600x-pad,600x600,f8f8f8.jpg | 35.3 KiB | 30.7 KiB |
Item preview, Bold and Colorful Abstract Wild Stripes Modern Multicolor Pattern… div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.5815562394.0316/st,small,507x507-pad,600x600,f8f8f8.jpg | 34.2 KiB | 29.8 KiB |
Item preview, I'm not a morning person designed and sold by GeoCreate. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | ih1.redbubble.net/image.6063159379.7558/st,small,507x507-pad,600x600,f8f8f8.jpg | 31.5 KiB | 27.4 KiB |
Item preview, The frog summoner designed and sold by Rihnlin. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.5810603607.5010/papergc,300x,w,f8f8f8-pad,600x600,... | 29.1 KiB | 25.3 KiB |
Item preview, Resist Persist Cat designed and sold by lauragraves. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6087698893.6030/ls,13inch,x600-c,90,0,600,600-bg,f... | 27.3 KiB | 23.7 KiB |
Item preview, Moss I wake up? designed and sold by Fairydrop. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6088604946.7943/fp,504x498,black,off_white,box20,s... | 26.3 KiB | 22.9 KiB |
Thiago Corrêa div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6110057377.3950/flat,750x,075,f-pad,750x1000,f8f8f8.jpg | 25.3 KiB | 22.4 KiB |
Rene Garza div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6096712224.0003/flat,750x,075,f-pad,750x1000,f8f8f8.jpg | 24.1 KiB | 21.3 KiB |
Item preview, Book and Tea at the Library designed and sold by hwainio. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.5808476131.3849/tb,840x840,small-c,1,198,600,600-b... | 24.1 KiB | 20.6 KiB |
Item preview, How to Split Pug designed and sold by Huebucket. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6086236330.5240/paperpc,450x,w,f8f8f8-pad,600x600,... | 17.6 KiB | 15.3 KiB |
Item preview, Dearest Dandelion designed and sold by Renea L Thull. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6118394894.0994/mug,standard,x334,right-pad,600x60... | 16.8 KiB | 14.6 KiB |
Rey Rey div.styles_slideInner__b054f308 > div.styles_card__6246181b > div.ArtistCard_artistCardBody__NcmJP > img.styles_image__29f3202c | ih0.redbubble.net/avatar.10416530.140x140.jpg | 14.9 KiB | 14.3 KiB |
Item preview, Midnight Muse: The Dance of Sisterhood designed and sold by 83ora… div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6109520416.5642/mug,tall,x334,right-pad,600x600,f8... | 16.0 KiB | 13.9 KiB |
Item preview, Cute Baby Farm Birds Chicken Chicks Country Living Garden Brown d… div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.5806637796.1430/papergc,300x,w,f8f8f8-pad,600x600,... | 14.6 KiB | 12.7 KiB |
Avatar for Steven Rhodes div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c | ih0.redbubble.net/avatar.1433098.140x140.jpg | 13.8 KiB | 12.7 KiB |
Item preview, Riddles of the Sphinx designed and sold by flaroh. div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6109137497.1985/papergc,300x,w,f8f8f8-pad,600x600,... | 14.6 KiB | 12.7 KiB |
Avatar for flaroh div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c | ih0.redbubble.net/avatar.4986275.140x140.jpg | 13.0 KiB | 11.9 KiB |
banner div.HeroBanner_hero__vEex7 > div.HeroBanner_heroImageContainer__XhUk5 > picture.Picture_picture__Gztgz > img.Picture_fullWidth__T0hym | /5hig0ukq7ib0/211qCCGM96XF6uddOA6iDF/f2b8393116008dc20bab... | 108.5 KiB | 11.4 KiB |
Item preview, Pink party t-rex with boa and party hat designed and sold by Ilze… div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6063488242.8114/paperpc,450x,w,f8f8f8-pad,600x600,... | 12.1 KiB | 10.5 KiB |
katherineblower div.styles_slideInner__b054f308 > div.styles_card__6246181b > div.ArtistCard_artistCardBody__NcmJP > img.styles_image__29f3202c | ih1.redbubble.net/avatar.10735073.140x140.jpg | 11.0 KiB | 10.4 KiB |
vonKowen div.styles_slideInner__b054f308 > div.styles_card__6246181b > div.ArtistCard_artistCardBody__NcmJP > img.styles_image__29f3202c | ih1.redbubble.net/avatar.10433559.140x140.jpg | 10.7 KiB | 10.1 KiB |
Avatar for katherineblower div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c | ih0.redbubble.net/avatar.10735073.140x140.jpg | 11.0 KiB | 9.9 KiB |
TechraNova div.styles_slideInner__b054f308 > div.styles_card__6246181b > div.ArtistCard_artistCardBody__NcmJP > img.styles_image__29f3202c | ih0.redbubble.net/avatar.5862437.140x140.jpg | 10.4 KiB | 9.9 KiB |
Item preview, You are a better artist than any AI text designed and sold by The… div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.ProductCard_productCardImage____xct | /image.6078646257.3329/paperpc,450x,w,f8f8f8-pad,600x600,... | 11.1 KiB | 9.7 KiB |
Avatar for keyvei div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c | ih0.redbubble.net/avatar.9914690.140x140.jpg | 10.1 KiB | 9.1 KiB |
flooko div.styles_slideInner__b054f308 > div.styles_card__6246181b > div.ArtistCard_artistCardBody__NcmJP > img.styles_image__29f3202c | ih1.redbubble.net/avatar.9314974.140x140.jpg | 9.4 KiB | 8.8 KiB |
Rene Garza div.styles_slideInner__b054f308 > div.styles_card__6246181b > div.ArtistCard_artistCardBody__NcmJP > img.styles_image__29f3202c | ih1.redbubble.net/avatar.3596528.140x140.jpg | 9.0 KiB | 8.4 KiB |
Avatar for DingHuArt div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c | ih0.redbubble.net/avatar.8052684.140x140.jpg | 8.7 KiB | 7.6 KiB |
Avatar for Loki Propagandart div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c | ih0.redbubble.net/avatar.3997222.140x140.jpg | 8.7 KiB | 7.6 KiB |
Avatar for DinoMike div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c | ih0.redbubble.net/avatar.10762700.140x140.jpg | 8.5 KiB | 7.4 KiB |
Avatar for Ilustrata® div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c | ih0.redbubble.net/avatar.1124788.140x140.jpg | 8.3 KiB | 7.3 KiB |
NemiMakeit div.styles_slideInner__b054f308 > div.styles_card__6246181b > div.ArtistCard_artistCardBody__NcmJP > img.styles_image__29f3202c | ih1.redbubble.net/avatar.10217761.140x140.jpg | 7.8 KiB | 7.2 KiB |
HandsOffMyDinosaur div.styles_slideInner__b054f308 > div.styles_card__6246181b > div.ArtistCard_artistCardBody__NcmJP > img.styles_image__29f3202c | ih0.redbubble.net/avatar.420903.140x140.jpg | 7.7 KiB | 7.1 KiB |
surfybirdy div.styles_slideInner__b054f308 > div.styles_card__6246181b > div.ArtistCard_artistCardBody__NcmJP > img.styles_image__29f3202c | ih1.redbubble.net/avatar.5888932.140x140.jpg | 7.4 KiB | 6.8 KiB |
div.styles_box__54ba70e3 > a.styles_link__4a3f593d > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 div.styles_box__54ba70e3 > a.styles_link__4a3f593d > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 | d23mnqickg7hnq.cloudfront.net/images/stickers-extrasmol.jpg | 8.7 KiB | 6.8 KiB |
Viviana Gonzalez div.styles_slideInner__b054f308 > div.styles_card__6246181b > div.ArtistCard_artistCardBody__NcmJP > img.styles_image__29f3202c | ih0.redbubble.net/avatar.4413916.140x140.jpg | 7.3 KiB | 6.7 KiB |
Thiago Corrêa div.styles_slideInner__b054f308 > div.styles_card__6246181b > div.ArtistCard_artistCardBody__NcmJP > img.styles_image__29f3202c | ih0.redbubble.net/avatar.3341305.140x140.jpg | 5.9 KiB | 5.3 KiB |
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.
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.
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 |
|---|---|
| redbubble.com/ | 220 ms |
| www.redbubble.com/ | 0.0 ms |
Keep the server response time for the main document short because all other requests depend on it. Learn more about the Time to First Byte metric.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| www.redbubble.com/ | 766 ms |
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.
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 |
|---|---|---|
| www.redbubble.com/frontend-static/_next/static/css/9cc30eda45613c82.css | 58.0 KiB | 48.6 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.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| /frontend-static/_next/static/chunks/pages/_app-01d2335b5... | 260.7 KiB | 115.8 KiB |
| /gtag/js?id=G-QB79Q66SYP&cx=c>m=4e64h1&sign=0ce5b5e1c66... | 169.4 KiB | 64.3 KiB |
| analytics-gtm.redbubble.com/gtm.js?id=GTM-9R9D | 188.9 KiB | 60.7 KiB |
| consent.cookiebot.com/Framework/IAB/consent-sdk-2.3.js | 87.7 KiB | 57.3 KiB |
| analytics.tiktok.com/i18n/pixel/static/main.MWE0ZWQ3ZWQwMQ.js | 109.0 KiB | 56.1 KiB |
| www.redbubble.com/frontend-static/_next/static/chunks/3484-5bb58abf89c8123c.js | 55.4 KiB | 42.9 KiB |
| cdn.attn.tv/tag/2026-latest/unified-tag.js?v=2026-latest_937e08ccfb0 | 49.0 KiB | 28.5 KiB |
| www.redbubble.com/frontend-static/_next/static/chunks/main-b5c97787844ac572.js | 46.9 KiB | 25.2 KiB |
| /frontend-static/_next/static/chunks/c79f2fb3.d70468dd6b6... | 48.6 KiB | 22.5 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 |
|---|---|---|---|
| www.redbubble.com/ | 1.5 s | 16 ms | 0.3 ms |
| /frontend-static/_next/static/chunks/framework-1dc53f3dd8... | 736 ms | 636 ms | 5.7 ms |
| Unattributable | 403 ms | 15 ms | 0.0 ms |
| analytics-gtm.redbubble.com/gtm.js?id=GTM-9R9D | 175 ms | 148 ms | 25 ms |
| /6d7cefb2-c346-40e7-8718-01d2c3288cff/cc.js?renew=false&r... | 131 ms | 101 ms | 28 ms |
| /gtag/js?id=G-QB79Q66SYP&cx=c>m=4e64h1&sign=0ce5b5e1c66... | 120 ms | 100 ms | 16 ms |
| res4.applovin.com/p/104/b/bs.c9e1074f5b3f9fc8ea15d152add07294-1.iife.js | 90 ms | 85 ms | 2.8 ms |
| /frontend-static/_next/static/chunks/pages/_app-01d2335b5... | 88 ms | 61 ms | 27 ms |
| analytics.tiktok.com/i18n/pixel/static/main.MWE0ZWQ3ZWQwMQ.js | 87 ms | 70 ms | 15 ms |
| /frontend-static/_next/static/chunks/c79f2fb3.d70468dd6b6... | 72 ms | 63 ms | 4.9 ms |
| /frontend-static/_next/static/chunks/pages/index-de3de462... | 66 ms | 63 ms | 2.9 ms |
| /uc.js?cbid=6d7cefb2-c346-40e7-8718-01d2c3288cff&implemen... | 63 ms | 54 ms | 3.9 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 | 1.7 s |
| Other | 1.1 s |
| Rendering | 417 ms |
| Style & Layout | 373 ms |
| Script Parsing & Compilation | 195 ms |
| Garbage Collection | 78 ms |
| Parse HTML & CSS | 23 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 |
|---|---|
| Pages with cache-control:no-store header cannot enter back/forward cache. | Actionable |
| Pages whose main resource has cache-control:no-store cannot enter back/forward cache. | Not actionable |
| Back/forward cache is disabled because some JavaScript network request received resource with Cache-Control: no-store header. | Not 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 | |
|---|---|
Loki Propagandart div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6096883598.6331/flat,750x,075,f-pad,750x1000,f8f8f8.jpg |
FifthSun div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.5947929477.2680/raf,750x1000,075,t,101010:01c5ca27c6.jpg |
NemiMakeit div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6108859919.2071/flat,750x,075,f-pad,750x1000,f8f8f8.jpg |
TechraNova div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6093919512.0994/flat,750x,075,f-pad,750x1000,f8f8f8.jpg |
vonKowen div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6108617603.3413/flat,750x,075,f-pad,750x1000,f8f8f8.jpg |
flooko div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6109921484.9490/flat,750x,075,f-pad,750x1000,f8f8f8.jpg |
katherineblower div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6111152304.4967/flat,750x1000,075,t.jpg |
Rene Garza div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6096712224.0003/flat,750x,075,f-pad,750x1000,f8f8f8.jpg |
Rey Rey div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6095977387.4496/flat,750x1000,075,t.jpg |
surfybirdy div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6097396232.4266/flat,750x,075,f-pad,750x1000,f8f8f8.jpg |
HandsOffMyDinosaur div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6094381879.7483/raf,750x1000,075,t,fafafa:ca443f4786.jpg |
Thiago Corrêa div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6110057377.3950/flat,750x,075,f-pad,750x1000,f8f8f8.jpg |
Viviana Gonzalez div.styles_slide__dee20c33 > div.styles_slideInner__b054f308 > div.styles_card__6246181b > img.styles_image__29f3202c | ih1.redbubble.net/image.6096503943.2972/flat,750x,075,f-pad,750x1000,f8f8f8.jpg |
Get it on Google Play ul.styles_list__7e0826d8 > li.styles_listItem__7e0826d8 > a > img.styles_image__29f3202c | |
div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c | www.redbubble.com/frontend-static/_next/static/media/ic_art.b28c2af2.svg |
div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c | www.redbubble.com/frontend-static/_next/static/media/ic_thumbs-up.de769e41.svg |
div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c | www.redbubble.com/frontend-static/_next/static/media/ic_leaf.2c8ef65f.svg |
More information about the performance of your application. These numbers don't directly affect the Performance score.
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.
Each ARIA `role` supports a specific subset of `aria-*` attributes. Mismatching these invalidates the `aria-*` attributes. Learn how to match ARIA attributes to their roles.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Your Lists header.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 |
View Cart header.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 |
Focusable descendents within an `[aria-hidden="true"]` element prevent those interactive elements from being available to users of assistive technologies like screen readers. Learn how `aria-hidden` affects focusable elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
For You
Retro Gaming
Music
Funny T-Shirts
Celebrate Earth Day
Pop-Culture
Fresh… nav.styles_nav__2f63e651 > ul.styles_list__2f63e651 > li.styles_item__d7823929 > div.styles_subItems__d7823929 |
All Clothing
T-Shirts
Hoodies & Sweatshirts
New
Hats
Socks
Dresses
Tank Tops nav.styles_nav__2f63e651 > ul.styles_list__2f63e651 > li.styles_item__d7823929 > div.styles_subItems__d7823929 |
All Stickers
Holographic Stickers
Funny Stickers
Car Stickers
Bumper Stickers
W… nav.styles_nav__2f63e651 > ul.styles_list__2f63e651 > li.styles_item__d7823929 > div.styles_subItems__d7823929 |
All Phone Cases
iPhone Cases
Samsung Galaxy
New nav.styles_nav__2f63e651 > ul.styles_list__2f63e651 > li.styles_item__d7823929 > div.styles_subItems__d7823929 |
All Wall Art
Posters
Photographic Prints
Art Prints
Tapestries
Canvas Prints
Fr… nav.styles_nav__2f63e651 > ul.styles_list__2f63e651 > li.styles_item__d7823929 > div.styles_subItems__d7823929 |
All Home & Living
Mugs
Throw Pillows
Throw Blankets
Tapestries
Magnets
Aprons
C… nav.styles_nav__2f63e651 > ul.styles_list__2f63e651 > li.styles_item__d7823929 > div.styles_subItems__d7823929 |
All Kids Clothes
Kids T-Shirts
Baby One-Pieces
Kids Pullover Hoodies nav.styles_nav__2f63e651 > ul.styles_list__2f63e651 > li.styles_item__d7823929 > div.styles_subItems__d7823929 |
All Accessories
Hats
Socks
Pins
Backpacks
Tech Accessories
Tote Bags
Makeup Bag… nav.styles_nav__2f63e651 > ul.styles_list__2f63e651 > li.styles_item__d7823929 > div.styles_subItems__d7823929 |
All Stationery & Office
Greeting Cards
Spiral Notebooks
Mouse Pads & Desk Mats
… nav.styles_nav__2f63e651 > ul.styles_list__2f63e651 > li.styles_item__d7823929 > div.styles_subItems__d7823929 |
All Gifts
Gifts for Gamers
Gifts for Her
Gifts for Him
Gifts for Animal Lovers
… nav.styles_nav__2f63e651 > ul.styles_list__2f63e651 > li.styles_item__d7823929 > div.styles_subItems__d7823929 |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
When a button doesn't have an accessible name, screen readers announce it as "button", making it unusable for users who rely on screen readers. Learn how to make buttons more accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
div.styles_box__54ba70e3 > div.styles_carouselWrapper__dee20c33 > div.styles_box__54ba70e3 > button.styles_button__9a62cfb3 div.styles_box__54ba70e3 > div.styles_carouselWrapper__dee20c33 > div.styles_box__54ba70e3 > button.styles_button__9a62cfb3 |
div.styles_box__54ba70e3 > div.styles_carouselWrapper__dee20c33 > div.styles_box__54ba70e3 > button.styles_button__9a62cfb3 div.styles_box__54ba70e3 > div.styles_carouselWrapper__dee20c33 > div.styles_box__54ba70e3 > button.styles_button__9a62cfb3 |
div.styles_box__54ba70e3 > div.styles_carouselWrapper__dee20c33 > div.styles_box__54ba70e3 > button.styles_button__9a62cfb3 div.styles_box__54ba70e3 > div.styles_carouselWrapper__dee20c33 > div.styles_box__54ba70e3 > button.styles_button__9a62cfb3 |
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.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c |
div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c |
div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c |
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.
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 |
|---|
See more div.RecommendedWorksFeed_carouselTitle__nt44F > div.RecommendedWorksFeed_seeAllDesktop__KxexG > a.styles_link__2ab672d8 > span.styles_children__2ab672d8 |
Shop Schitt’s Creek merch div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > a.styles_button__9a62cfb3 > span.styles_children__9a62cfb3 |
Learn more
- opens in new window or tab div.styles_box__54ba70e3 > a.styles_link__2ab672d8 > span.styles_children__2ab672d8 > span.styles_box__54ba70e3 |
Learn more
- opens in new window or tab div.styles_box__54ba70e3 > a.styles_link__2ab672d8 > span.styles_children__2ab672d8 > span.styles_box__54ba70e3 |
Learn more
- opens in new window or tab div.styles_box__54ba70e3 > a.styles_link__2ab672d8 > span.styles_children__2ab672d8 > span.styles_box__54ba70e3 |
Learn more
- opens in new window or tab div.styles_box__54ba70e3 > a.styles_link__2ab672d8 > span.styles_children__2ab672d8 > span.styles_box__54ba70e3 |
Sign up div.styles_box__54ba70e3 > button.styles_button__9a62cfb3 > span.styles_children__9a62cfb3 > span.styles_box__54ba70e3 |
These are opportunities to improve the legibility of your content.
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 |
|---|
Worldwide Shipping div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > h6#worldwide-shipping |
These are opportunities to improve keyboard navigation in your application.
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 |
|---|---|
| AttributionReporting |
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 |
|---|---|
A bad HTTP response code (403) was received when fetching the script. | |
Failed to load resource: net::ERR_TOO_MANY_REDIRECTS |
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.
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.
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.
| Link destination | Link Text |
|---|---|
| www.redbubble.com/explore?ref=home-explore-carousel-all | See more |
| www.redbubble.com/explore?ref=home-explore-carousel-all | See more |
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.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c |
div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c |
div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c div.TileContainer_brandSignals__DfOrc > div.styles_box__54ba70e3 > div.styles_box__54ba70e3 > img.styles_image__29f3202c |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Send Feedback