Industry Context — Common BS Fingerprints in Software, SaaS & Tech Products
shadcn/ui
(https://ui.shadcn.com) 📸 Data Snapshot: May 24, 2026Analyze the raw signals below. How would a machine score this business’s credibility?
Here are the exact signals captured from up to six pages of the site — the same raw inputs the evaluation engine analyzed. They are grouped by signal type so you can weigh each the way the machine does.
🏗️ Semantic Structure — heading hierarchy & page identity (Info Density · Commodity Fingerprint)
HOMEPAGE The Foundation for your Design System – shadcn/ui (https://ui.shadcn.com)
The Foundation for your Design System – shadcn/ui
A set of beautifully designed components that you can customize, extend, and build on. Start here then make it your own. Open Source. Open Code.
NAV_HEADER_HEADING_REPEATED_BODY New Project – shadcn/ui (https://ui.shadcn.com/create/)
New Project – shadcn/ui
Customize everything. Pick your component library, icons, base color, theme, fonts and create your own version of shadcn/ui.
NAV_HEADER_HEADING_REPEATED_BODY Components – shadcn/ui (https://ui.shadcn.com/docs/components/)
Components – shadcn/ui
Here you can find all the components available in the library. We are working on adding more components.
HEADING_BODY Changelog – shadcn/ui (https://ui.shadcn.com/docs/changelog/)
Changelog – shadcn/ui
Latest updates and announcements.
📝 The Narrative — clean text per page (Info Density · Semantic Coherence)
HOMEPAGE (https://ui.shadcn.com) The Foundation for your Design System – shadcn/ui
New preset commands [H1] The Foundation for your Design System A set of beautifully designed components that you can customize, extend, and build on. Start here then make it your own. Open Source. Open Code.New ProjectView Components [IMG: Dashboard] [IMG: Dashboard] CNLRERNo Team MembersInvite your team to collaborate on this project.Invite MembersSyncingUpdatingLoadingPrice RangeSet your budget range ($200 - 800).12 resultshttps://Auto52% usedSendInput Securehttps://Two-factor authenticationVerify via email or phone number.EnableYour profile has been verified.Appearance SettingsCompute EnvironmentSelect the compute environment for your cluster.KubernetesRun GPU workloads on a K8s configured cluster. This is the default.Virtual MachineAccess a VM configured cluster to run workloads. (Coming soon)Number of GPUsYou can add more later.Wallpaper TintingAllow the wallpaper to be tinted.ArchiveReportSnoozeI agree to the terms and conditions123 CopilotProcessing your requestPlease wait while we process your request. Do not refresh the page.Cancel
SUB-PAGE · THIN (https://ui.shadcn.com/create/) New Project – shadcn/ui
SUB-PAGE (https://ui.shadcn.com/docs/components/) Components – shadcn/ui
SectionsIntroductionComponentsInstallationThemingCLIRTLSkillsMCP ServerRegistryFormsChangelogComponentsAccordionAlertAlert DialogAspect RatioAvatarBadgeBreadcrumbButtonButton GroupCalendarCardCarouselChartCheckboxCollapsibleComboboxCommandContext MenuData TableDate PickerDialogDirectionDrawerDropdown MenuEmptyFieldHover CardInputInput GroupInput OTPItemKbdLabelMenubarNative SelectNavigation MenuPaginationPopoverProgressRadio GroupResizableScroll AreaSelectSeparatorSheetSidebarSkeletonSliderSonnerSpinnerSwitchTableTabsTextareaToastToggleToggle GroupTooltipTypographyGet StartedInstallationcomponents.jsonPackage ImportsThemingDark ModeCLIMonorepoSkillsJavaScriptFigmallms.txtLegacy DocsFormsReact Hook FormTanStack FormFormischRegistryIntroductionGetting StartedRegistry DirectoryExamplesNamespacesAuthenticationMCP ServerOpen in v0registry.jsonregistry-item.json [H1] Components Here you can find all the components available in the library. We are working on adding more components.AccordionAlertAlert DialogAspect RatioAvatarBadgeBreadcrumbButtonButton GroupCalendarCardCarouselChartCheckboxCollapsibleComboboxCommandContext MenuData TableDate PickerDialogDirectionDrawerDropdown MenuEmptyFieldHover CardInputInput GroupInput OTPItemKbdLabelMenubarNative SelectNavigation MenuPaginationPopoverProgressRadio GroupResizableScroll AreaSelectSeparatorSheetSidebarSkeletonSliderSonnerSpinnerSwitchTableTabsTextareaToastToggleToggle GroupTooltipTypography Can't find what you need? Try the registry directory for community-maintained components.Accordion Deploy your shadcn/ui app on VercelTrusted by OpenAI, Sonos, Adobe, and more.Vercel provides tools and infrastructure to deploy apps and features at scale.Deploy NowDeploy to Vercel
SUB-PAGE (https://ui.shadcn.com/docs/changelog/) Changelog – shadcn/ui
SectionsIntroductionComponentsInstallationThemingCLIRTLSkillsMCP ServerRegistryFormsChangelogComponentsAccordionAlertAlert DialogAspect RatioAvatarBadgeBreadcrumbButtonButton GroupCalendarCardCarouselChartCheckboxCollapsibleComboboxCommandContext MenuData TableDate PickerDialogDirectionDrawerDropdown MenuEmptyFieldHover CardInputInput GroupInput OTPItemKbdLabelMenubarNative SelectNavigation MenuPaginationPopoverProgressRadio GroupResizableScroll AreaSelectSeparatorSheetSidebarSkeletonSliderSonnerSpinnerSwitchTableTabsTextareaToastToggleToggle GroupTooltipTypographyGet StartedInstallationcomponents.jsonPackage ImportsThemingDark ModeCLIMonorepoSkillsJavaScriptFigmallms.txtLegacy DocsFormsReact Hook FormTanStack FormFormischRegistryIntroductionGetting StartedRegistry DirectoryExamplesNamespacesAuthenticationMCP ServerOpen in v0registry.jsonregistry-item.json
[H1] Changelog
RSSLatest updates and announcements.
[H2] May 2026 - Registry Include and Validate
This release adds two updates for registry authors:
include for composing large source registries from multiple registry.json
files.
shadcn registry validate for checking source registries before publishing.
This makes it easier to maintain source and dynamic registries without keeping
one large registry.json file by hand.
Registry authors can now organize a large source registry across multiple
registry.json files and compose them with shadcn build.
Copyregistry.json
components
└── ui
├── button.tsx
├── input.tsx
└── registry.json
hooks
├── registry.json
├── use-media-query.ts
└── use-toggle.ts
registry.jsonCopy{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"name": "acme",
"homepage": "https://acme.com",
"include": [
"components/ui/registry.json",
"hooks/registry.json"
]
}
Included registry.json files are valid registry files for composition and may
omit name and homepage. Only the root registry.json must define the
registry metadata.
components/ui/registry.jsonCopy{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"items": [
{
"name": "button",
"type": "registry:ui",
"files": [
{
"path": "button.tsx",
"type": "registry:ui"
}
]
}
]
}
[H2] Build output#
shadcn build resolves included registries and writes a flattened
registry.json without include. Item file paths are preserved from the root
registry, so a file declared in components/ui/registry.json is written as
components/ui/button.tsx in the built registry item.
[H2] Validate your registry#
You can now validate a source registry before publishing or serving it.
pnpmnpmyarnbunpnpm dlx shadcn registry validateCopy
Validation runs against the source registry files directly. You do not need to
run shadcn build first.
The command checks the root registry.json, included registry files, item
schema errors, duplicate item names, include rules, and local item file paths.
Validation reports all actionable errors it can find in one run.
[H2] Registry loaders#
The shadcn/registry package also exports loadRegistry and
loadRegistryItem for dynamic registry routes.
app/r/registry.json/route.tsCopyimport { loadRegistry } from "shadcn/registry"
export
🛡️ Trust Signals — reviews, proof links, trust-theatre flag (Trust & Proof)
| Page | Reviews | Proof links |
|---|---|---|
| / (home) | 4 | 0 |
| /create/ | 8 | 0 |
| /docs/components/ | 4 | 0 |
| /docs/changelog/ | 3 | 0 |
🔗 Identity & Technical Layer — schema JSON-LD: identity chains, entity gaps (Identity & Authority)
Your Diagnosis
Before revealing the machine’s verdict, predict the BS score for each signal. Higher = more BS (more fluff, less verifiable substance). Drag each slider, then submit to compare your judgment against the engine.
Stuck? Reveal the heuristic lens — how the deterministic page-auditor reads each signal (no AI, pure pattern rules)
These are the structural rules a local, deterministic auditor applies — the same lens you can use to judge each signal. They describe what to look for, not this company’s result.
Classify each sentence as substantive or hollow. Grounding markers — numbers, currencies, dates, technical units, named entities — outweigh marketing adjectives. When fluff sits right next to hard evidence, the fluff is forgiven.
Pull the main entities out of the H1, then check whether they actually recur through the body. A page that announces one thing and then talks about another drifts. Headings with no real sentences underneath read as pseudo-substance.
Count trust words (review, testimonial, rating, verified) against real outbound proof links (Google, Trustpilot, Clutch, G2, Yelp). Lots of trust language with zero verification links is trust theatre. Unlinked logo galleries count against it.
Look at how much sentence length varies. Natural writing varies its rhythm; templated or mass-produced copy is statistically uniform. Very low variation reads as commodity content — unless unique named entities break the pattern.
Inspect the JSON-LD. Is there an Organization or Person schema, and does it carry sameAs links to real external profiles (LinkedIn, socials)? Missing schema or no identity declaration signals an anonymous entity.
Want to apply this lens yourself? The free BS Indicator Chrome extension runs these heuristic checks live on any page. Bear in mind it is a single-page, deterministic tool — it relies only on pattern rules for the page in front of it and does not perform the cross-page semantic correlation this audit uses, so its readout is a starting lens, not the full verdict.
Based on 1130 businesses audited.
shadcn/ui has 8.2 points less BS than the average for Software, SaaS & Tech Products.
Software, SaaS & Tech Products BS: shadcn/ui (ui.shadcn.com)
shadcn/ui is a high-substance, low-fluff technical tool that unfortunately utilizes ‘Trust Theatre’ patterns by displaying unlinked review counts and logo blocks. While the technical documentation is elite, the lack of structured data and verifiable social proof links creates a minor but measurable gap between its technical reality and its trust signals.
First, replace the unlinked review counts with verified links to third-party platforms like GitHub Stars, Product Hunt, or G2. Second, implement comprehensive JSON-LD schema (Organization and SoftwareSourceCode) to anchor the site’s digital identity. Third, add direct case study links or ‘built-with’ proof for the OpenAI and Adobe logos to substantiate the ‘Trusted by’ claims. Finally, populate the empty /create/ page with text to ensure its SEO and UX signal matches its meta-title promise.
The content perfectly aligns with the Software and Tech Products category, specifically focusing on UI component libraries and design systems for developers. The presence of CLI commands, package manager instructions (pnpm, npm, yarn, bun), and code snippets confirms a deep technical focus.
“The score of 25 is driven largely by the Trust and Proof pillar (15 points) and Identity and Authority pillar (6 points). The trust_theatre_flag is true on every page while proof_links_count remains at 0, which is a classic BS pattern even for legitimate products. The Information Density and Semantic Coherence pillars scored near-perfectly due to the elite quality of the technical documentation.”
This training module utilizes a snapshot of public data from shadcn/ui, captured on May 24, 2026, to demonstrate how machine logic evaluates different types of business narratives.
Purpose: This data is presented under “Fair Use” / “Educational Exception” for the purpose of forensic semantic analysis, allowing users to compare human intuition against machine-generated evaluations.
Notice to shadcn/ui: This analysis is part of a non-adversarial audit conducted by 1 Euro SEO. The results provided by 1EuroSEO are intended as professional feedback to help improve any website’s machine-readability and authority signals. The 1EuroSEO BS Detection Tool is a free tool, and anyone can test any company to see how their content is interpreted by AI models.
Any company can use the insights for free and improve its voice by comparing it to industry clichés or competitors. When a company has updated its content, it can always submit a new audit request, which will be reflected in a new current score.
To all users: You are encouraged to visit the live site at https://ui.shadcn.com to view the most current version of its content and learn from the source what this company is about and what it offers.