@tokenoftrust/storefront-runner 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +58 -0
- package/README.md +40 -0
- package/apps/storefront/.dev.vars.example +41 -0
- package/apps/storefront/.env.example +24 -0
- package/apps/storefront/astro.config.mjs +245 -0
- package/apps/storefront/env.d.ts +155 -0
- package/apps/storefront/lib/ensure-preview-reconcile-secret.sh +31 -0
- package/apps/storefront/lib/resolve-cf-token.sh +48 -0
- package/apps/storefront/lib/resolve-tot-credentials.sh +69 -0
- package/apps/storefront/migrations/0000_baseline.sql +54 -0
- package/apps/storefront/migrations/0001_products_fts.sql +9 -0
- package/apps/storefront/migrations/README.md +54 -0
- package/apps/storefront/migrations/meta/0000_snapshot.json +347 -0
- package/apps/storefront/migrations/meta/0001_snapshot.json +347 -0
- package/apps/storefront/migrations/meta/_journal.json +20 -0
- package/apps/storefront/package.json +41 -0
- package/apps/storefront/public/brand/northwind-logo-dark.svg +4 -0
- package/apps/storefront/public/brand/northwind-logo-light.svg +4 -0
- package/apps/storefront/public/brand/northwind-og.svg +13 -0
- package/apps/storefront/public/favicon.svg +5 -0
- package/apps/storefront/public/js/dashboard-team.js +147 -0
- package/apps/storefront/public/js/dashboard-vendor-search.js +115 -0
- package/apps/storefront/src/components/Badge.astro +34 -0
- package/apps/storefront/src/components/Breadcrumbs.astro +45 -0
- package/apps/storefront/src/components/CollectionCard.astro +56 -0
- package/apps/storefront/src/components/EmptyState.astro +35 -0
- package/apps/storefront/src/components/Img.astro +68 -0
- package/apps/storefront/src/components/ProductCard.astro +228 -0
- package/apps/storefront/src/components/Section.astro +39 -0
- package/apps/storefront/src/components/Seo.astro +70 -0
- package/apps/storefront/src/components/WidgetFrame.astro +34 -0
- package/apps/storefront/src/components/auth/AuthBadge.astro +44 -0
- package/apps/storefront/src/components/chrome/AnnouncementBar.astro +108 -0
- package/apps/storefront/src/components/chrome/MegaMenu.astro +26 -0
- package/apps/storefront/src/components/chrome/NavDropdown.astro +116 -0
- package/apps/storefront/src/components/chrome/SiteFooter.astro +181 -0
- package/apps/storefront/src/components/chrome/SiteHeader.astro +181 -0
- package/apps/storefront/src/components/chrome/UtilityNav.astro +79 -0
- package/apps/storefront/src/components/commerce/FoxyLoader.astro +23 -0
- package/apps/storefront/src/components/commerce/PriceDisplay.astro +91 -0
- package/apps/storefront/src/components/commerce/ProductCarousel.astro +197 -0
- package/apps/storefront/src/components/commerce/ProductGrid.astro +75 -0
- package/apps/storefront/src/components/commerce/RatingStars.astro +58 -0
- package/apps/storefront/src/components/compliance/NicotineWarning.astro +33 -0
- package/apps/storefront/src/components/home/Hero.astro +164 -0
- package/apps/storefront/src/components/islands/AgeGate.tsx +105 -0
- package/apps/storefront/src/components/islands/ImageGallery.tsx +237 -0
- package/apps/storefront/src/components/islands/IsolatedAgeGate.tsx +73 -0
- package/apps/storefront/src/components/islands/MobileNav.tsx +239 -0
- package/apps/storefront/src/components/islands/QuickView.tsx +138 -0
- package/apps/storefront/src/components/islands/RecentlyViewed.tsx +122 -0
- package/apps/storefront/src/components/islands/SavedList.tsx +99 -0
- package/apps/storefront/src/components/islands/SearchTypeahead.tsx +248 -0
- package/apps/storefront/src/components/islands/VariantSelector.tsx +378 -0
- package/apps/storefront/src/components/marketing/CardGrid.astro +72 -0
- package/apps/storefront/src/components/marketing/CodeSample.astro +20 -0
- package/apps/storefront/src/components/marketing/CtaBand.astro +24 -0
- package/apps/storefront/src/components/marketing/Faq.astro +37 -0
- package/apps/storefront/src/components/marketing/Integrations.astro +63 -0
- package/apps/storefront/src/components/marketing/MarketingBlocks.astro +53 -0
- package/apps/storefront/src/components/marketing/MarketingCtas.astro +48 -0
- package/apps/storefront/src/components/marketing/MarketingHero.astro +72 -0
- package/apps/storefront/src/components/marketing/ProofStrip.astro +37 -0
- package/apps/storefront/src/components/marketing/SplitCompare.astro +53 -0
- package/apps/storefront/src/components/marketing/Steps.astro +36 -0
- package/apps/storefront/src/components/marketing/Testimonials.astro +38 -0
- package/apps/storefront/src/components/marketing/TrustBar.astro +22 -0
- package/apps/storefront/src/components/nav/Footer.astro +148 -0
- package/apps/storefront/src/components/nav/Header.astro +190 -0
- package/apps/storefront/src/components/plp/ActiveFilters.astro +79 -0
- package/apps/storefront/src/components/plp/FacetSidebar.astro +146 -0
- package/apps/storefront/src/components/plp/Pagination.astro +99 -0
- package/apps/storefront/src/components/plp/SortSelect.astro +64 -0
- package/apps/storefront/src/config/devTenants.ts +16 -0
- package/apps/storefront/src/config/kvTenantResolver.ts +87 -0
- package/apps/storefront/src/config/resolver.ts +46 -0
- package/apps/storefront/src/config/tenants.ts +193 -0
- package/apps/storefront/src/layouts/Layout.astro +303 -0
- package/apps/storefront/src/lib/analytics/index.ts +47 -0
- package/apps/storefront/src/lib/auth/brokerAssertion.ts +136 -0
- package/apps/storefront/src/lib/auth/devAuth.ts +90 -0
- package/apps/storefront/src/lib/auth/gatePage.ts +81 -0
- package/apps/storefront/src/lib/auth/identityToken.ts +341 -0
- package/apps/storefront/src/lib/auth/loginGate.ts +107 -0
- package/apps/storefront/src/lib/auth/route.ts +146 -0
- package/apps/storefront/src/lib/auth/session.ts +203 -0
- package/apps/storefront/src/lib/auth/totAccessClient.ts +503 -0
- package/apps/storefront/src/lib/basePath.ts +41 -0
- package/apps/storefront/src/lib/cfImage.ts +55 -0
- package/apps/storefront/src/lib/chrome/model.ts +65 -0
- package/apps/storefront/src/lib/colors.ts +97 -0
- package/apps/storefront/src/lib/content-edit/client.ts +230 -0
- package/apps/storefront/src/lib/content-edit/index.ts +14 -0
- package/apps/storefront/src/lib/content-edit/route.ts +25 -0
- package/apps/storefront/src/lib/content-edit/types.ts +19 -0
- package/apps/storefront/src/lib/cspStaticHashes.ts +24 -0
- package/apps/storefront/src/lib/d1/catalog.ts +289 -0
- package/apps/storefront/src/lib/dashboard/staffAdmission.ts +43 -0
- package/apps/storefront/src/lib/dashboard/staffVendorAccess.ts +449 -0
- package/apps/storefront/src/lib/dashboard/tenantSelection.ts +136 -0
- package/apps/storefront/src/lib/dashboard/vendorQuery.ts +61 -0
- package/apps/storefront/src/lib/demoGate.ts +113 -0
- package/apps/storefront/src/lib/dev/ai-widget-client.js +127 -0
- package/apps/storefront/src/lib/dev/cliSignInCode.ts +132 -0
- package/apps/storefront/src/lib/diag/redact.ts +20 -0
- package/apps/storefront/src/lib/edgeCache.ts +128 -0
- package/apps/storefront/src/lib/email/magicLinkInviteEmail.ts +62 -0
- package/apps/storefront/src/lib/env.ts +60 -0
- package/apps/storefront/src/lib/fixtures/sampleProducts.ts +130 -0
- package/apps/storefront/src/lib/format.ts +29 -0
- package/apps/storefront/src/lib/foxyCommerce.ts +49 -0
- package/apps/storefront/src/lib/imageAttrs.ts +55 -0
- package/apps/storefront/src/lib/jsonld.ts +136 -0
- package/apps/storefront/src/lib/maintenance.ts +71 -0
- package/apps/storefront/src/lib/memoryKv.ts +32 -0
- package/apps/storefront/src/lib/messaging/messagesClient.ts +143 -0
- package/apps/storefront/src/lib/placeholder.ts +99 -0
- package/apps/storefront/src/lib/previewReload.ts +125 -0
- package/apps/storefront/src/lib/rawMarketingHtml.ts +133 -0
- package/apps/storefront/src/lib/search/index.ts +74 -0
- package/apps/storefront/src/lib/sections.ts +129 -0
- package/apps/storefront/src/lib/securityHeaders.ts +31 -0
- package/apps/storefront/src/lib/storyblok/content-model.ts +289 -0
- package/apps/storefront/src/lib/storyblok/provider.ts +524 -0
- package/apps/storefront/src/lib/tenantRouting.ts +91 -0
- package/apps/storefront/src/lib/tot/ToTClient.ts +177 -0
- package/apps/storefront/src/lib/tot/d1Client.ts +62 -0
- package/apps/storefront/src/lib/tot/query.ts +187 -0
- package/apps/storefront/src/lib/tot/totClientInterface.ts +30 -0
- package/apps/storefront/src/lib/url.ts +119 -0
- package/apps/storefront/src/lib/wishlist.ts +63 -0
- package/apps/storefront/src/middleware/index.ts +413 -0
- package/apps/storefront/src/pages/404.astro +61 -0
- package/apps/storefront/src/pages/[...slug].astro +90 -0
- package/apps/storefront/src/pages/api/auth/logout.ts +21 -0
- package/apps/storefront/src/pages/api/auth/magic-exchange.ts +107 -0
- package/apps/storefront/src/pages/api/auth/send.ts +85 -0
- package/apps/storefront/src/pages/api/auth/verify.ts +135 -0
- package/apps/storefront/src/pages/api/cache-purge.ts +44 -0
- package/apps/storefront/src/pages/api/content-edit/ai-edit.ts +64 -0
- package/apps/storefront/src/pages/api/csp-report.ts +25 -0
- package/apps/storefront/src/pages/api/dashboard/enter-vendor.ts +124 -0
- package/apps/storefront/src/pages/api/dashboard/vendor-search.ts +120 -0
- package/apps/storefront/src/pages/api/dev/cli-signin-code.ts +44 -0
- package/apps/storefront/src/pages/api/newsletter.ts +104 -0
- package/apps/storefront/src/pages/api/request-access.ts +172 -0
- package/apps/storefront/src/pages/auth/login.astro +149 -0
- package/apps/storefront/src/pages/auth/magic.astro +105 -0
- package/apps/storefront/src/pages/capabilities.astro +292 -0
- package/apps/storefront/src/pages/collections/[handle].astro +154 -0
- package/apps/storefront/src/pages/collections/index.astro +59 -0
- package/apps/storefront/src/pages/dashboard/[appDomain]/index.astro +100 -0
- package/apps/storefront/src/pages/dashboard/[appDomain]/team.astro +154 -0
- package/apps/storefront/src/pages/dashboard/index.astro +160 -0
- package/apps/storefront/src/pages/dev.astro +653 -0
- package/apps/storefront/src/pages/index.astro +290 -0
- package/apps/storefront/src/pages/llms.txt.ts +92 -0
- package/apps/storefront/src/pages/products/[handle].astro +443 -0
- package/apps/storefront/src/pages/robots.txt.ts +24 -0
- package/apps/storefront/src/pages/saved.astro +35 -0
- package/apps/storefront/src/pages/search.astro +150 -0
- package/apps/storefront/src/pages/sitemap.xml.ts +78 -0
- package/apps/storefront/src/pages/style-guide/[tenant]/[theme].astro +646 -0
- package/apps/storefront/src/pages/style-guide/[tenant]/index.astro +85 -0
- package/apps/storefront/src/pages/style-guide/index.astro +94 -0
- package/apps/storefront/src/pages/tenants/[id]/[...path].ts +57 -0
- package/apps/storefront/src/styles/global.css +277 -0
- package/apps/storefront/src/themes/reference.ts +61 -0
- package/apps/storefront/src/themes/schema.ts +111 -0
- package/apps/storefront/src/themes/tenants/index.ts +51 -0
- package/apps/storefront/tsconfig.json +16 -0
- package/apps/storefront/vitest.config.ts +22 -0
- package/apps/storefront/wrangler.toml +175 -0
- package/package.json +23 -0
- package/packages/public-runtime/LICENSE +58 -0
- package/packages/public-runtime/package.json +22 -0
- package/packages/public-runtime/src/binary-path.ts +68 -0
- package/packages/public-runtime/src/capabilities.ts +89 -0
- package/packages/public-runtime/src/catalog-api.ts +81 -0
- package/packages/public-runtime/src/catalog-d1.ts +192 -0
- package/packages/public-runtime/src/csp.ts +109 -0
- package/packages/public-runtime/src/customization-preview.ts +197 -0
- package/packages/public-runtime/src/customization-reconcile.ts +63 -0
- package/packages/public-runtime/src/customization-runtime.ts +157 -0
- package/packages/public-runtime/src/customization-scripts.ts +64 -0
- package/packages/public-runtime/src/customization-versioning.ts +95 -0
- package/packages/public-runtime/src/foxy.ts +184 -0
- package/packages/public-runtime/src/index.ts +30 -0
- package/packages/public-runtime/src/product.ts +159 -0
- package/packages/public-runtime/src/search.ts +45 -0
- package/packages/public-runtime/src/tenant-assets.ts +444 -0
- package/packages/public-runtime/src/tenant.ts +243 -0
- package/packages/public-runtime/tsconfig.json +8 -0
- package/packages/public-runtime/vitest.config.ts +8 -0
- package/pnpm-workspace.yaml +7 -0
- package/scripts/build/copy-tenant-assets.mjs +69 -0
- package/scripts/tot-dev.mjs +439 -0
- package/tenants/bigdvapor/content/blog.json +52 -0
- package/tenants/bigdvapor/content/chrome.html +149 -0
- package/tenants/bigdvapor/content/chrome.json +47 -0
- package/tenants/bigdvapor/content/home.html +463 -0
- package/tenants/bigdvapor/content/home.json +73 -0
- package/tenants/bigdvapor/content/pages/about.json +5 -0
- package/tenants/bigdvapor/content/pages/privacy.json +6 -0
- package/tenants/bigdvapor/content/pages/shipping-returns.json +6 -0
- package/tenants/bigdvapor/content/pages-html/blogs/news.html +86 -0
- package/tenants/bigdvapor/content/pages-html/pages/about-us.html +106 -0
- package/tenants/bigdvapor/content/pages-html/pages/contact-us.html +61 -0
- package/tenants/bigdvapor/content/pages-html/pages/privacy-policy.html +72 -0
- package/tenants/bigdvapor/content/pages-html/pages/shipping-returns.html +172 -0
- package/tenants/bigdvapor/content/themes/bigd-navy.json +109 -0
- package/tenants/bigdvapor/public/img/brands/adjust-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/again-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/al-fakher-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/arro-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/cookies-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/core-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/cyclone-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/dinner-lady-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/extre-bar-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/fifty-bar-vape-disposable.jpg +0 -0
- package/tenants/bigdvapor/public/img/brands/firerose-vape-disposable.jpg +0 -0
- package/tenants/bigdvapor/public/img/brands/flavor-beast-vape-disposable.jpg +0 -0
- package/tenants/bigdvapor/public/img/brands/foger-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/kk-energy-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/kumi-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/lost-vape-dispoable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/melo-labs-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/brands/mixo-vape-disposable.webp +0 -0
- package/tenants/bigdvapor/public/img/brands/one-tank-vape-disposable.jpg +0 -0
- package/tenants/bigdvapor/public/img/brands/oxbar-vape-disposable.webp +0 -0
- package/tenants/bigdvapor/public/img/brands/pillow-talk-vape-disposable.jpg +0 -0
- package/tenants/bigdvapor/public/img/brands/pod-king-vape-disposable.jpg +0 -0
- package/tenants/bigdvapor/public/img/brands/raz-vape-disposable.png +0 -0
- package/tenants/bigdvapor/public/img/hero-texas.jpg +0 -0
- package/tenants/bigdvapor/public/img/og.jpg +0 -0
- package/tenants/bigdvapor/public/img/pages/AdobeStock_202106312_web.jpg +0 -0
- package/tenants/bigdvapor/public/img/pages/CREW_web.jpg +0 -0
- package/tenants/bigdvapor/public/img/pages/Hero-Image.jpg +0 -0
- package/tenants/bigdvapor/public/img/tiles/adjust.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/again.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/al-fakher.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/arro.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/cookies.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/core.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/cyclone.png +0 -0
- package/tenants/bigdvapor/public/img/tiles/disposables.svg +23 -0
- package/tenants/bigdvapor/public/logo-wordmark.png +0 -0
- package/tenants/bigdvapor/public/pages/home.css +118 -0
- package/tenants/bigdvapor/public/pages/mkt.css +185 -0
- package/tenants/bigdvapor/public/pages/page.css +148 -0
- package/tenants/bigdvapor/public/themes/bigd-navy.css +73 -0
- package/tenants/bigdvapor/theme.json +12 -0
- package/tenants/giantvapes/content/chrome.html +152 -0
- package/tenants/giantvapes/content/chrome.json +94 -0
- package/tenants/giantvapes/content/home.html +194 -0
- package/tenants/giantvapes/content/home.json +50 -0
- package/tenants/giantvapes/content/pages/about.json +10 -0
- package/tenants/giantvapes/content/pages/privacy.json +6 -0
- package/tenants/giantvapes/content/pages/shipping-returns.json +6 -0
- package/tenants/giantvapes/content/pages-html/blogs/news.html +68 -0
- package/tenants/giantvapes/content/pages-html/pages/about-us.html +95 -0
- package/tenants/giantvapes/content/pages-html/pages/contact-us.html +68 -0
- package/tenants/giantvapes/content/pages-html/pages/privacy-policy.html +65 -0
- package/tenants/giantvapes/content/pages-html/pages/shipping-returns.html +77 -0
- package/tenants/giantvapes/content/themes/giant-navy.json +73 -0
- package/tenants/giantvapes/public/img/hero-suicide-bunny.jpg +0 -0
- package/tenants/giantvapes/public/img/hero.webp +0 -0
- package/tenants/giantvapes/public/img/og.jpg +0 -0
- package/tenants/giantvapes/public/logo-wordmark.png +0 -0
- package/tenants/giantvapes/public/pages/home.css +120 -0
- package/tenants/giantvapes/public/pages/mkt.css +185 -0
- package/tenants/giantvapes/public/pages/page.css +155 -0
- package/tenants/giantvapes/public/themes/giant-navy.css +76 -0
- package/tenants/giantvapes/theme.json +39 -0
- package/tenants/home/content/chrome.json +11 -0
- package/tenants/home/content/home.html +304 -0
- package/tenants/home/content/home.json +13 -0
- package/tenants/home/public/js/storefront.js +210 -0
- package/tenants/home/public/logo-wordmark.png +0 -0
- package/tenants/home/public/pages/storefront.css +212 -0
- package/tenants/home/theme.json +6 -0
- package/tenants/tokenoftrust/.tot/config.json +9 -0
- package/tenants/tokenoftrust/content/chrome.json +55 -0
- package/tenants/tokenoftrust/content/home.html +723 -0
- package/tenants/tokenoftrust/content/home.json +233 -0
- package/tenants/tokenoftrust/content/pages-html/careers.html +231 -0
- package/tenants/tokenoftrust/content/pages-html/company.html +275 -0
- package/tenants/tokenoftrust/content/pages-html/contact/contact-sales.html +188 -0
- package/tenants/tokenoftrust/content/pages-html/contact/startup-apply.html +206 -0
- package/tenants/tokenoftrust/content/pages-html/contact.html +178 -0
- package/tenants/tokenoftrust/content/pages-html/industries/adult-content-age-verification.html +286 -0
- package/tenants/tokenoftrust/content/pages-html/industries/cannabis.html +277 -0
- package/tenants/tokenoftrust/content/pages-html/pact-act-pricing.html +289 -0
- package/tenants/tokenoftrust/content/pages-html/pricing.html +483 -0
- package/tenants/tokenoftrust/content/pages-html/product/age-assurance/age-estimation.html +278 -0
- package/tenants/tokenoftrust/content/pages-html/product/age-assurance/age-gate.html +279 -0
- package/tenants/tokenoftrust/content/pages-html/product/age-assurance/age-verification.html +265 -0
- package/tenants/tokenoftrust/content/pages-html/product/age-assurance.html +173 -0
- package/tenants/tokenoftrust/content/pages-html/product/compliance/aml.html +214 -0
- package/tenants/tokenoftrust/content/pages-html/product/compliance/pact-act.html +226 -0
- package/tenants/tokenoftrust/content/pages-html/product/fraud-prevention.html +254 -0
- package/tenants/tokenoftrust/content/pages-html/product/social-profile-verification.html +212 -0
- package/tenants/tokenoftrust/content/pages-html/product/tax/excise-tax.html +213 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification/aml.html +259 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification/biometric-selfie.html +305 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification/coverage.html +254 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification/document-verification.html +306 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification/electronic-identity-verification.html +304 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification/government-id-verification.html +308 -0
- package/tenants/tokenoftrust/content/pages-html/product/verification.html +183 -0
- package/tenants/tokenoftrust/content/pages-html/product.html +228 -0
- package/tenants/tokenoftrust/content/pages-html/resources/integrations/bigcommerce-integration.html +220 -0
- package/tenants/tokenoftrust/content/pages-html/resources/integrations/shopify-integration.html +221 -0
- package/tenants/tokenoftrust/content/pages-html/resources/integrations/wordpress.html +220 -0
- package/tenants/tokenoftrust/content/pages-html/resources/integrations.html +172 -0
- package/tenants/tokenoftrust/content/pages-html/resources/refer-a-friend-program.html +317 -0
- package/tenants/tokenoftrust/content/pages-html/resources.html +177 -0
- package/tenants/tokenoftrust/content/pages-html/reviews.html +273 -0
- package/tenants/tokenoftrust/content/pages-html/solutions.html +292 -0
- package/tenants/tokenoftrust/content/pages-html/vlp-alcohol.html +289 -0
- package/tenants/tokenoftrust/content/pages-html/vlp-cigars-and-tobacco.html +286 -0
- package/tenants/tokenoftrust/content/pages-html/vlp-firearm-accessories.html +267 -0
- package/tenants/tokenoftrust/content/pages-html/vlp-peptides.html +273 -0
- package/tenants/tokenoftrust/content/themes/tot-navy.json +88 -0
- package/tenants/tokenoftrust/public/favicon.png +0 -0
- package/tenants/tokenoftrust/public/logo-icon.png +0 -0
- package/tenants/tokenoftrust/public/logo-wordmark.png +0 -0
- package/tenants/tokenoftrust/public/pages/company.css +108 -0
- package/tenants/tokenoftrust/public/pages/home.css +457 -0
- package/tenants/tokenoftrust/public/pages/mkt.css +482 -0
- package/tenants/tokenoftrust/public/pages/pricing.css +214 -0
- package/tenants/tokenoftrust/public/pages/solutions.css +66 -0
- package/tenants/tokenoftrust/public/themes/tot-navy-1.0.0.css +136 -0
- package/tenants/tokenoftrust/public/themes/tot-navy.css +358 -0
- package/tenants/tokenoftrust/theme.json +31 -0
- package/tsconfig.base.json +20 -0
|
@@ -0,0 +1,273 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<link rel="icon" type="image/png" href="/tenants/tokenoftrust/favicon.png">
|
|
7
|
+
<title>Customer Reviews | Token of Trust</title>
|
|
8
|
+
<meta name="description" content="Explore customer reviews and ratings for Token of Trust. Real experiences from teams using our identity, age, and KYC/AML verification solutions.">
|
|
9
|
+
<link rel="canonical" href="https://tokenoftrust.com/reviews/">
|
|
10
|
+
<meta name="robots" content="index,follow,max-image-preview:large">
|
|
11
|
+
<meta property="og:type" content="website">
|
|
12
|
+
<meta property="og:site_name" content="Token of Trust">
|
|
13
|
+
<meta property="og:title" content="Customer Reviews | Token of Trust">
|
|
14
|
+
<meta property="og:description" content="Real experiences from teams using Token of Trust identity, age, and KYC/AML verification.">
|
|
15
|
+
<meta property="og:url" content="https://tokenoftrust.com/reviews/">
|
|
16
|
+
<meta name="twitter:card" content="summary_large_image">
|
|
17
|
+
<meta name="twitter:title" content="Customer Reviews">
|
|
18
|
+
<meta name="twitter:description" content="Real experiences from teams using Token of Trust.">
|
|
19
|
+
<script type="application/ld+json">
|
|
20
|
+
{
|
|
21
|
+
"@context": "https://schema.org",
|
|
22
|
+
"@graph": [
|
|
23
|
+
{
|
|
24
|
+
"@type": "Organization",
|
|
25
|
+
"@id": "https://tokenoftrust.com/#org",
|
|
26
|
+
"name": "Token of Trust",
|
|
27
|
+
"url": "https://tokenoftrust.com/",
|
|
28
|
+
"logo": "/tenants/tokenoftrust/logo-icon.png",
|
|
29
|
+
"slogan": "Real Customers. Less Fraud. More Trust."
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"@type": "WebPage",
|
|
33
|
+
"name": "Customer Reviews",
|
|
34
|
+
"url": "https://tokenoftrust.com/reviews/"
|
|
35
|
+
}
|
|
36
|
+
]
|
|
37
|
+
}
|
|
38
|
+
</script>
|
|
39
|
+
<link rel="stylesheet" href="/tenants/tokenoftrust/themes/tot-navy.css">
|
|
40
|
+
<link rel="stylesheet" href="/tenants/tokenoftrust/pages/mkt.css">
|
|
41
|
+
<style>
|
|
42
|
+
.review-grid {
|
|
43
|
+
display: grid;
|
|
44
|
+
grid-template-columns: repeat(2, 1fr);
|
|
45
|
+
gap: 24px;
|
|
46
|
+
margin-top: 44px;
|
|
47
|
+
}
|
|
48
|
+
.review-grid .testimonial h3 {
|
|
49
|
+
font-size: 1.05rem;
|
|
50
|
+
color: var(--navy);
|
|
51
|
+
margin-bottom: 8px;
|
|
52
|
+
}
|
|
53
|
+
.review-grid .testimonial .stars {
|
|
54
|
+
display: block;
|
|
55
|
+
margin-bottom: 10px;
|
|
56
|
+
}
|
|
57
|
+
.badge-grid {
|
|
58
|
+
display: grid;
|
|
59
|
+
grid-template-columns: repeat(2, 1fr);
|
|
60
|
+
gap: 24px;
|
|
61
|
+
margin-top: 40px;
|
|
62
|
+
}
|
|
63
|
+
.badge-grid .review-card h3 {
|
|
64
|
+
color: var(--navy);
|
|
65
|
+
font-size: 1.1rem;
|
|
66
|
+
margin: 6px 0 10px;
|
|
67
|
+
}
|
|
68
|
+
.badge-grid .review-card p {
|
|
69
|
+
color: var(--muted);
|
|
70
|
+
font-size: .93rem;
|
|
71
|
+
}
|
|
72
|
+
.badge-grid .review-card .card-link {
|
|
73
|
+
margin-top: 14px;
|
|
74
|
+
}
|
|
75
|
+
@media (max-width: 780px) {
|
|
76
|
+
.review-grid, .badge-grid {
|
|
77
|
+
grid-template-columns: 1fr;
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
</style>
|
|
81
|
+
</head>
|
|
82
|
+
<body>
|
|
83
|
+
<a class="skip-link" href="#main">Skip to main content</a>
|
|
84
|
+
|
|
85
|
+
<header class="site">
|
|
86
|
+
<div class="container nav-row">
|
|
87
|
+
<a class="brand" href="/" aria-label="Token of Trust home"><img src="/tenants/tokenoftrust/logo-wordmark.png" alt="Token of Trust" width="156" height="34" style="height:34px;width:auto;display:block"></a>
|
|
88
|
+
<nav class="primary" id="primaryNav" aria-label="Primary">
|
|
89
|
+
<ul>
|
|
90
|
+
<li><a href="/product/">Platform</a></li>
|
|
91
|
+
<li><a href="/solutions/">Industries</a></li>
|
|
92
|
+
<li><a href="/company/">Company</a></li>
|
|
93
|
+
<li><a href="/resources/">Resources</a></li>
|
|
94
|
+
<li><a href="/pricing/">Pricing</a></li>
|
|
95
|
+
<li><a href="https://app.tokenoftrust.com">Login</a></li>
|
|
96
|
+
</ul>
|
|
97
|
+
</nav>
|
|
98
|
+
<div class="nav-cta">
|
|
99
|
+
<a class="btn btn-line" href="/contact/">Book Demo</a>
|
|
100
|
+
<a class="btn btn-green" href="https://app.tokenoftrust.com">Start For Free</a>
|
|
101
|
+
<button class="hamburger" id="hamburger" aria-label="Toggle navigation menu" aria-expanded="false" aria-controls="primaryNav"><span></span><span></span><span></span></button>
|
|
102
|
+
</div>
|
|
103
|
+
</div>
|
|
104
|
+
</header>
|
|
105
|
+
|
|
106
|
+
<main id="main">
|
|
107
|
+
<nav class="container crumbs" aria-label="Breadcrumb">
|
|
108
|
+
<a href="/">Home</a><span class="sep">›</span>Reviews
|
|
109
|
+
</nav>
|
|
110
|
+
|
|
111
|
+
<section class="hero" aria-labelledby="hero-heading">
|
|
112
|
+
<div class="container">
|
|
113
|
+
<span class="eyebrow"><span class="dot"></span>Customer reviews</span>
|
|
114
|
+
<h1 id="hero-heading">Token of Trust <span class="grad">customer reviews.</span></h1>
|
|
115
|
+
<p class="lede">
|
|
116
|
+
Real experiences from teams using Token of Trust for identity verification, age assurance,
|
|
117
|
+
and KYC/AML compliance. Read what our customers say — and see unbiased reviews on
|
|
118
|
+
third-party sites.
|
|
119
|
+
</p>
|
|
120
|
+
<div class="cta-row">
|
|
121
|
+
<a class="btn btn-green" href="https://app.tokenoftrust.com">Start For Free</a>
|
|
122
|
+
<a class="btn btn-line" href="/contact/">Contact Sales</a>
|
|
123
|
+
</div>
|
|
124
|
+
</div>
|
|
125
|
+
</section>
|
|
126
|
+
|
|
127
|
+
<section aria-labelledby="quotes-heading">
|
|
128
|
+
<div class="container">
|
|
129
|
+
<div class="center reveal">
|
|
130
|
+
<span class="kicker">In their words</span>
|
|
131
|
+
<h2 id="quotes-heading">What customers say</h2>
|
|
132
|
+
</div>
|
|
133
|
+
<div class="review-grid">
|
|
134
|
+
<figure class="testimonial reveal">
|
|
135
|
+
<h3>Token of Trust made compliance easy!</h3>
|
|
136
|
+
<span class="stars" aria-label="Rated 5 out of 5 stars">★★★★★</span>
|
|
137
|
+
<blockquote>“When new legislation affected our business, we had to act fast. Token of Trust’s
|
|
138
|
+
age and identity verification solution allowed us to quickly and easily meet new compliance requirements.
|
|
139
|
+
Their KYC was easy to set up and has worked really well for our e-commerce business.”</blockquote>
|
|
140
|
+
<figcaption class="cite">Zed, Planet of the Vapes Canada</figcaption>
|
|
141
|
+
</figure>
|
|
142
|
+
<figure class="testimonial reveal">
|
|
143
|
+
<h3>Best Value ID Verification!</h3>
|
|
144
|
+
<span class="stars" aria-label="Rated 5 out of 5 stars">★★★★★</span>
|
|
145
|
+
<blockquote>“The product is reliable, meets all our compliance criteria, and their team is always
|
|
146
|
+
on the ball. When we have questions, they’ve always been responsive and they know their stuff.
|
|
147
|
+
I like that they’re based in the US and that it’s a reputable company that’s easy to
|
|
148
|
+
get a hold of.”</blockquote>
|
|
149
|
+
<figcaption class="cite">William G., Florida</figcaption>
|
|
150
|
+
</figure>
|
|
151
|
+
<figure class="testimonial reveal">
|
|
152
|
+
<h3>A turnkey international KYC/AML solution that our users love!</h3>
|
|
153
|
+
<span class="stars" aria-label="Rated 5 out of 5 stars">★★★★★</span>
|
|
154
|
+
<blockquote>“Our users who get verified by Token of Trust like how simple the interface is and
|
|
155
|
+
appreciate the security and privacy measures that are taken when handling their personal information.”</blockquote>
|
|
156
|
+
<figcaption class="cite">Nayiem W., Sweden</figcaption>
|
|
157
|
+
</figure>
|
|
158
|
+
<figure class="testimonial reveal">
|
|
159
|
+
<h3>The best KYC and AML system I’ve used and service is impeccable!</h3>
|
|
160
|
+
<span class="stars" aria-label="Rated 5 out of 5 stars">★★★★★</span>
|
|
161
|
+
<blockquote>“Easy to invite clients to get verified. Clients find the identity verification process
|
|
162
|
+
to be quite effortless. Tracking the progress of clients within the KYC and AML process is easy. The
|
|
163
|
+
tools are very reliable and always do what we’d expect. Top notch customer service!”</blockquote>
|
|
164
|
+
<figcaption class="cite">Constantinos A., Cyprus</figcaption>
|
|
165
|
+
</figure>
|
|
166
|
+
<figure class="testimonial reveal">
|
|
167
|
+
<h3>Big Time-Saver After Switching to Token of Trust!</h3>
|
|
168
|
+
<span class="stars" aria-label="Rated 5 out of 5 stars">★★★★★</span>
|
|
169
|
+
<blockquote>“I’m spending less time each day tracking down escalated cases and I’ve
|
|
170
|
+
seen enough detail to know that Token of Trust is verifying and handling the due-diligence process on
|
|
171
|
+
our orders properly. I previously had to spend a lot of time reviewing flagged and escalated cases, but
|
|
172
|
+
now Token of Trust does that with a greater level of automation.”</blockquote>
|
|
173
|
+
<figcaption class="cite">Brady H., Minnesota</figcaption>
|
|
174
|
+
</figure>
|
|
175
|
+
<figure class="testimonial reveal">
|
|
176
|
+
<h3>The best solution for Identity Verification on the planet!</h3>
|
|
177
|
+
<span class="stars" aria-label="Rated 5 out of 5 stars">★★★★★</span>
|
|
178
|
+
<blockquote>“I have used the industry’s go-to identity verification and age verification
|
|
179
|
+
services over the years. All of them had their benefits, but there was always more wanted from their
|
|
180
|
+
services. Token of Trust is the best of all worlds, offering a wide range of ID verification options
|
|
181
|
+
to choose from.”</blockquote>
|
|
182
|
+
<figcaption class="cite">Eli J., New York</figcaption>
|
|
183
|
+
</figure>
|
|
184
|
+
</div>
|
|
185
|
+
</div>
|
|
186
|
+
</section>
|
|
187
|
+
|
|
188
|
+
<section class="alt-bg" aria-labelledby="thirdparty-heading">
|
|
189
|
+
<div class="container">
|
|
190
|
+
<div class="center reveal">
|
|
191
|
+
<span class="kicker">Unbiased reviews</span>
|
|
192
|
+
<h2 id="thirdparty-heading">Read Token of Trust reviews on third-party sites</h2>
|
|
193
|
+
<p class="section-lede">Don’t just take our word for it — explore independent reviews of Token
|
|
194
|
+
of Trust products on trusted software marketplaces.</p>
|
|
195
|
+
</div>
|
|
196
|
+
<div class="badge-grid reveal">
|
|
197
|
+
<div class="review-card">
|
|
198
|
+
<span class="rating"><span class="stars">★★★★★</span></span>
|
|
199
|
+
<h3>Reviews on G2</h3>
|
|
200
|
+
<p>G2 is the world’s largest tech marketplace where businesses can discover, review, and manage
|
|
201
|
+
the technology they need to reach their potential.</p>
|
|
202
|
+
<a class="card-link" href="https://www.g2.com/products/token-of-trust/reviews/" rel="noopener nofollow" target="_blank">Read
|
|
203
|
+
reviews on G2 →</a>
|
|
204
|
+
</div>
|
|
205
|
+
<div class="review-card">
|
|
206
|
+
<span class="rating"><span class="stars">★★★★★</span></span>
|
|
207
|
+
<h3>Reviews on Capterra</h3>
|
|
208
|
+
<p>Capterra is a leading online resource for business software buyers. Each month, Capterra helps millions
|
|
209
|
+
of buyers find the right software.</p>
|
|
210
|
+
<a class="card-link" href="https://www.capterra.com/p/182340/Token-of-Trust/reviews/" rel="noopener nofollow" target="_blank">Read
|
|
211
|
+
reviews on Capterra →</a>
|
|
212
|
+
</div>
|
|
213
|
+
</div>
|
|
214
|
+
</div>
|
|
215
|
+
</section>
|
|
216
|
+
|
|
217
|
+
<section aria-labelledby="cta-heading">
|
|
218
|
+
<div class="container">
|
|
219
|
+
<div class="cta-band reveal">
|
|
220
|
+
<span class="kicker">Join them</span>
|
|
221
|
+
<h2 id="cta-heading">See why teams trust Token of Trust</h2>
|
|
222
|
+
<p>Start verifying customers in minutes, or talk to our team about your compliance requirements.</p>
|
|
223
|
+
<div class="cta-row">
|
|
224
|
+
<a class="btn btn-green" href="https://app.tokenoftrust.com">Start For Free</a>
|
|
225
|
+
<a class="btn btn-line" href="/contact/">Contact Sales</a>
|
|
226
|
+
</div>
|
|
227
|
+
</div>
|
|
228
|
+
</div>
|
|
229
|
+
</section>
|
|
230
|
+
</main>
|
|
231
|
+
|
|
232
|
+
<footer class="site">
|
|
233
|
+
<div class="container">
|
|
234
|
+
<div class="foot-grid">
|
|
235
|
+
<div>
|
|
236
|
+
<a class="brand" href="/" aria-label="Token of Trust home"><img src="/tenants/tokenoftrust/logo-wordmark.png" alt="Token of Trust" width="156" height="34" style="height:34px;width:auto;display:block"></a>
|
|
237
|
+
<p class="foot-note">Customer verification and compliance for regulated ecommerce. 256-bit SSL. We will
|
|
238
|
+
NEVER sell your data. GDPR · CCPA · PIPEDA.</p>
|
|
239
|
+
</div>
|
|
240
|
+
<nav aria-label="Platform footer"><h3>Platform</h3><ul>
|
|
241
|
+
<li><a href="/product/verification/">Identity Verification</a></li>
|
|
242
|
+
<li><a href="/product/age-assurance/">Age Assurance</a></li>
|
|
243
|
+
<li><a href="/product/fraud-prevention/">Fraud Prevention</a></li>
|
|
244
|
+
<li><a href="/product/">All products</a></li>
|
|
245
|
+
</ul></nav>
|
|
246
|
+
<nav aria-label="Industries footer"><h3>Industries</h3><ul>
|
|
247
|
+
<li><a href="/solutions/">All industries</a></li>
|
|
248
|
+
<li><a href="/vlp-cigars-and-tobacco/">Tobacco & Vape</a></li>
|
|
249
|
+
<li><a href="/vlp-alcohol/">Wine & Spirits</a></li>
|
|
250
|
+
<li><a href="/industries/cannabis/">Cannabis</a></li>
|
|
251
|
+
</ul></nav>
|
|
252
|
+
<nav aria-label="Company footer"><h3>Company</h3><ul>
|
|
253
|
+
<li><a href="/company/">Company</a></li>
|
|
254
|
+
<li><a href="/careers/">Careers</a></li>
|
|
255
|
+
<li><a href="/pricing/">Pricing</a></li>
|
|
256
|
+
<li><a href="/contact/">Contact Sales</a></li>
|
|
257
|
+
</ul></nav>
|
|
258
|
+
</div>
|
|
259
|
+
<p class="copyright">© 2026 Token of Trust®. All rights reserved.</p>
|
|
260
|
+
</div>
|
|
261
|
+
</footer>
|
|
262
|
+
|
|
263
|
+
<script>
|
|
264
|
+
(function(){
|
|
265
|
+
var burger = document.getElementById('hamburger');
|
|
266
|
+
var nav = document.getElementById('primaryNav');
|
|
267
|
+
burger.addEventListener('click', function(){ var open = nav.classList.toggle('open'); burger.setAttribute('aria-expanded', open ? 'true' : 'false'); });
|
|
268
|
+
var io = new IntersectionObserver(function(entries){ entries.forEach(function(e){ if(e.isIntersecting){ e.target.classList.add('in'); io.unobserve(e.target); } }); }, {threshold:.12});
|
|
269
|
+
document.querySelectorAll('.reveal').forEach(function(el){ io.observe(el); });
|
|
270
|
+
})();
|
|
271
|
+
</script>
|
|
272
|
+
</body>
|
|
273
|
+
</html>
|
|
@@ -0,0 +1,292 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<link rel="icon" type="image/png" href="/tenants/tokenoftrust/favicon.png">
|
|
7
|
+
<title>Industries — Verification Solutions for Your Industry | Token of Trust</title>
|
|
8
|
+
<meta name="description" content="Tailored identity, age, and KYC verification for education, financial services, healthcare, marketplaces, real estate, retail, tobacco & vape, wine & spirits, firearms, and more.">
|
|
9
|
+
<link rel="canonical" href="https://tokenoftrust.com/solutions/">
|
|
10
|
+
<meta name="robots" content="index,follow,max-image-preview:large">
|
|
11
|
+
<meta property="og:type" content="website">
|
|
12
|
+
<meta property="og:site_name" content="Token of Trust">
|
|
13
|
+
<meta property="og:title" content="Verification Solutions for Your Industry — Token of Trust">
|
|
14
|
+
<meta property="og:description" content="Tailored verification and compliance strategies for regulated industries — from age-restricted retail to KYC-driven financial services.">
|
|
15
|
+
<meta property="og:url" content="https://tokenoftrust.com/solutions/">
|
|
16
|
+
<meta name="twitter:card" content="summary_large_image">
|
|
17
|
+
<meta name="twitter:title" content="Token of Trust — Industries">
|
|
18
|
+
<meta name="twitter:description" content="Verification solutions tailored to your industry.">
|
|
19
|
+
<script type="application/ld+json">
|
|
20
|
+
{
|
|
21
|
+
"@context": "https://schema.org",
|
|
22
|
+
"@graph": [
|
|
23
|
+
{
|
|
24
|
+
"@type": "Organization",
|
|
25
|
+
"@id": "https://tokenoftrust.com/#org",
|
|
26
|
+
"name": "Token of Trust",
|
|
27
|
+
"url": "https://tokenoftrust.com/",
|
|
28
|
+
"logo": "/tenants/tokenoftrust/logo-icon.png",
|
|
29
|
+
"slogan": "Real Customers. Less Fraud. More Trust."
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"@type": "CollectionPage",
|
|
33
|
+
"name": "Verification Solutions for Your Industry",
|
|
34
|
+
"url": "https://tokenoftrust.com/solutions/",
|
|
35
|
+
"about": {
|
|
36
|
+
"@id": "https://tokenoftrust.com/#org"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
]
|
|
40
|
+
}
|
|
41
|
+
</script>
|
|
42
|
+
<link rel="stylesheet" href="/tenants/tokenoftrust/themes/tot-navy.css">
|
|
43
|
+
<link rel="stylesheet" href="/tenants/tokenoftrust/pages/mkt.css">
|
|
44
|
+
<link rel="stylesheet" href="/tenants/tokenoftrust/pages/solutions.css">
|
|
45
|
+
</head>
|
|
46
|
+
<body>
|
|
47
|
+
<a class="skip-link" href="#main">Skip to main content</a>
|
|
48
|
+
|
|
49
|
+
<header class="site">
|
|
50
|
+
<div class="container nav-row">
|
|
51
|
+
<a class="brand" href="/" aria-label="Token of Trust home">
|
|
52
|
+
<img src="/tenants/tokenoftrust/logo-wordmark.png" alt="Token of Trust" width="156" height="34" style="height:34px;width:auto;display:block">
|
|
53
|
+
</a>
|
|
54
|
+
<nav class="primary" id="primaryNav" aria-label="Primary">
|
|
55
|
+
<ul>
|
|
56
|
+
<li><a href="/product/">Platform</a></li>
|
|
57
|
+
<li><a class="active" href="/solutions/" aria-current="page">Industries</a></li>
|
|
58
|
+
<li><a href="/company/">Company</a></li>
|
|
59
|
+
<li><a href="/resources/">Resources</a></li>
|
|
60
|
+
<li><a href="/pricing/">Pricing</a></li>
|
|
61
|
+
<li><a href="https://app.tokenoftrust.com">Login</a></li>
|
|
62
|
+
</ul>
|
|
63
|
+
</nav>
|
|
64
|
+
<div class="nav-cta">
|
|
65
|
+
<a class="btn btn-line" href="/contact/">Book Demo</a>
|
|
66
|
+
<a class="btn btn-green" href="https://app.tokenoftrust.com">Start For Free</a>
|
|
67
|
+
<button class="hamburger" id="hamburger" aria-label="Toggle navigation menu" aria-expanded="false" aria-controls="primaryNav">
|
|
68
|
+
<span>
|
|
69
|
+
</span>
|
|
70
|
+
<span>
|
|
71
|
+
</span>
|
|
72
|
+
<span>
|
|
73
|
+
</span>
|
|
74
|
+
</button>
|
|
75
|
+
</div>
|
|
76
|
+
</div>
|
|
77
|
+
</header>
|
|
78
|
+
|
|
79
|
+
<main id="main">
|
|
80
|
+
<section class="hero" aria-labelledby="hero-heading">
|
|
81
|
+
<div class="container">
|
|
82
|
+
<span class="eyebrow"><span class="dot"></span>Industries</span>
|
|
83
|
+
<h1 id="hero-heading">Verification solutions for <span class="grad">your industry.</span></h1>
|
|
84
|
+
<p class="lede">
|
|
85
|
+
Every regulated industry carries its own trust problem. Token of Trust tailors identity, age, and KYC
|
|
86
|
+
verification to the rules, risks, and buyers of yours.
|
|
87
|
+
</p>
|
|
88
|
+
<div class="cta-row">
|
|
89
|
+
<a class="btn btn-green" href="https://app.tokenoftrust.com">Start For Free</a>
|
|
90
|
+
<a class="btn btn-line" href="/product/">Explore the product</a>
|
|
91
|
+
</div>
|
|
92
|
+
</div>
|
|
93
|
+
</section>
|
|
94
|
+
|
|
95
|
+
<section aria-labelledby="ind-heading" class="ind-section">
|
|
96
|
+
<div class="container">
|
|
97
|
+
<div class="center reveal">
|
|
98
|
+
<span class="kicker">By industry</span>
|
|
99
|
+
<h2 id="ind-heading">Tailored strategies, one platform</h2>
|
|
100
|
+
<p class="section-lede">
|
|
101
|
+
Pick your vertical to see how identity and compliance apply. Every industry below runs on the same
|
|
102
|
+
verification core — configured for its regulations.
|
|
103
|
+
</p>
|
|
104
|
+
</div>
|
|
105
|
+
<div class="ind-grid">
|
|
106
|
+
<article class="ind-card reveal">
|
|
107
|
+
<h3>Education</h3>
|
|
108
|
+
<p>
|
|
109
|
+
Because students work toward certifications, degrees, and other designations of substantiated
|
|
110
|
+
value, it is important to verify and re-verify the student to preserve the integrity of the
|
|
111
|
+
certification or degree — completing the circle of trust between student, institution, and
|
|
112
|
+
employer.
|
|
113
|
+
</p>
|
|
114
|
+
</article>
|
|
115
|
+
<article class="ind-card reveal">
|
|
116
|
+
<h3>Financial Services</h3>
|
|
117
|
+
<p>
|
|
118
|
+
Know Your Customer (KYC) has been a staple for banks for decades. There is now an expectation that
|
|
119
|
+
institutions make customer-fit decisions on quick, comprehensive data that is fair and impartial.
|
|
120
|
+
Offloading KYC onboarding de-risks your business.
|
|
121
|
+
</p>
|
|
122
|
+
</article>
|
|
123
|
+
<article class="ind-card reveal">
|
|
124
|
+
<h3>Healthcare</h3>
|
|
125
|
+
<p>
|
|
126
|
+
The desire to receive health care through electronic means has grown substantially — with it, the
|
|
127
|
+
risk of issuing orders or prescriptions for the wrong individual. An efficient, accurate Know Your
|
|
128
|
+
Patient process is imperative to the expected outcome for patient and provider.
|
|
129
|
+
</p>
|
|
130
|
+
</article>
|
|
131
|
+
<article class="ind-card reveal">
|
|
132
|
+
<h3>Marketplaces & Communities</h3>
|
|
133
|
+
<p>
|
|
134
|
+
From news outlets to "meet up" marketplaces to your favorite comment streams, there is a driving
|
|
135
|
+
force to create trust in online forums. Building trust at the origin of the transaction creates a
|
|
136
|
+
safer environment to meet, exchange information, or share ideas.
|
|
137
|
+
</p>
|
|
138
|
+
</article>
|
|
139
|
+
<article class="ind-card reveal">
|
|
140
|
+
<h3>Professional Services</h3>
|
|
141
|
+
<p>
|
|
142
|
+
Lawyers and accountants have long relied on reputation and referrals. As more customers seek their
|
|
143
|
+
services digitally, a consistent KYC process gains credibility with your customer base and lets
|
|
144
|
+
you interact with new customers freely and with confidence.
|
|
145
|
+
</p>
|
|
146
|
+
</article>
|
|
147
|
+
<article class="ind-card reveal">
|
|
148
|
+
<h3>Real Estate</h3>
|
|
149
|
+
<p>
|
|
150
|
+
The rental and home-purchase market relies heavily on valid government-issued identification.
|
|
151
|
+
De-risk existing processes by capturing the necessary data in Token of Trust's secure platform,
|
|
152
|
+
rely on unbiased decisions, and retain results as long as a legal or audit basis requires.
|
|
153
|
+
</p>
|
|
154
|
+
</article>
|
|
155
|
+
<article class="ind-card reveal">
|
|
156
|
+
<h3>Retail & eCommerce</h3>
|
|
157
|
+
<p>
|
|
158
|
+
Fraud permeates ecommerce from many angles — fraudulent people, invalid payments, and chargebacks.
|
|
159
|
+
A secure yet frictionless checkout that decreases fraud risk can make all the difference to your
|
|
160
|
+
margins, balancing quantity and quality.
|
|
161
|
+
</p>
|
|
162
|
+
</article>
|
|
163
|
+
<article class="ind-card reveal">
|
|
164
|
+
<h3>Tobacco & Vape</h3>
|
|
165
|
+
<p>
|
|
166
|
+
The PACT Act threw a wrench into the efficiency of the tobacco and vaping industries — logistics,
|
|
167
|
+
taxes, ATF reporting, and age verification. Offboard your PACT Act requirements to Token of Trust
|
|
168
|
+
and keep the focus on happy customers while staying compliant.
|
|
169
|
+
</p>
|
|
170
|
+
</article>
|
|
171
|
+
<article class="ind-card reveal">
|
|
172
|
+
<h3>Travel</h3>
|
|
173
|
+
<p>
|
|
174
|
+
Airports, car rentals, and on-demand car services all require that we know who is riding along.
|
|
175
|
+
Simple KYC processes in travel increase the trust needed to build positive brand awareness,
|
|
176
|
+
maximize margins, and reduce risk.
|
|
177
|
+
</p>
|
|
178
|
+
</article>
|
|
179
|
+
<article class="ind-card reveal">
|
|
180
|
+
<h3>Wine & Spirits</h3>
|
|
181
|
+
<p>
|
|
182
|
+
Verifying age is essential to being compliant with local and federal laws — and more complex when
|
|
183
|
+
purchase happens online and pickup happens in person. Token of Trust helps retailers meet
|
|
184
|
+
compliance needs while introducing best practices for efficiency.
|
|
185
|
+
</p>
|
|
186
|
+
</article>
|
|
187
|
+
<article class="ind-card reveal">
|
|
188
|
+
<h3>Firearms & Ammunition</h3>
|
|
189
|
+
<p>
|
|
190
|
+
It is in the best interest of retailers and consumers alike to ensure a reasonable level of
|
|
191
|
+
responsibility with all firearms and ammunition transactions. Token of Trust verifies consumer
|
|
192
|
+
identity so transactions happen legally, safely, and securely.
|
|
193
|
+
</p>
|
|
194
|
+
</article>
|
|
195
|
+
</div>
|
|
196
|
+
</div>
|
|
197
|
+
</section>
|
|
198
|
+
|
|
199
|
+
<section aria-labelledby="guides-heading">
|
|
200
|
+
<div class="container">
|
|
201
|
+
<div class="center reveal">
|
|
202
|
+
<span class="kicker">Deep-dive vertical guides</span>
|
|
203
|
+
<h2 id="guides-heading">Compliance playbooks by product category</h2>
|
|
204
|
+
<p class="section-lede">For the most heavily regulated categories, we publish a focused guide covering
|
|
205
|
+
the specific laws, taxes, and verification flow.</p>
|
|
206
|
+
</div>
|
|
207
|
+
<div class="feature-grid reveal">
|
|
208
|
+
<article class="feat-card accent"><h3>Wine & Spirits</h3><p>Alcohol age & tax compliance across
|
|
209
|
+
states and shipping rules.</p><a class="card-link" href="/vlp-alcohol/">Alcohol guide →</a></article>
|
|
210
|
+
<article class="feat-card accent"><h3>Tobacco & Cigars</h3><p>PACT Act reporting, excise tax, and age
|
|
211
|
+
verification for vape & tobacco.</p><a class="card-link" href="/vlp-cigars-and-tobacco/">Tobacco guide
|
|
212
|
+
→</a></article>
|
|
213
|
+
<article class="feat-card accent"><h3>Firearm Accessories</h3><p>Checkout rules for accessories that vary
|
|
214
|
+
by product and destination.</p><a class="card-link" href="/vlp-firearm-accessories/">Firearms guide →</a></article>
|
|
215
|
+
<article class="feat-card accent"><h3>Peptides</h3><p>Verification and risk controls for high-risk supplement
|
|
216
|
+
retailers.</p><a class="card-link" href="/vlp-peptides/">Peptides guide →</a></article>
|
|
217
|
+
<article class="feat-card accent"><h3>Cannabis & Hemp</h3><p>Double-taxation handling and age checks
|
|
218
|
+
for cannabis retailers.</p><a class="card-link" href="/industries/cannabis/">Cannabis guide →</a></article>
|
|
219
|
+
<article class="feat-card accent"><h3>Adult Content</h3><p>Age verification for adult websites & apps
|
|
220
|
+
under new state and UK laws.</p><a class="card-link" href="/industries/adult-content-age-verification/">Adult
|
|
221
|
+
content guide →</a></article>
|
|
222
|
+
</div>
|
|
223
|
+
</div>
|
|
224
|
+
</section>
|
|
225
|
+
|
|
226
|
+
<section class="alt-bg" aria-labelledby="cta-heading">
|
|
227
|
+
<div class="container">
|
|
228
|
+
<div class="ent-band reveal">
|
|
229
|
+
<span class="kicker">Not sure where you fit?</span>
|
|
230
|
+
<h2 id="cta-heading">Let's map verification to your industry</h2>
|
|
231
|
+
<p>
|
|
232
|
+
Our solutions architects design verification and compliance workflows for your products,
|
|
233
|
+
jurisdictions, and risk profile. Start free, or talk to sales.
|
|
234
|
+
</p>
|
|
235
|
+
<div class="cta-row cta-center">
|
|
236
|
+
<a class="btn btn-ent" href="https://app.tokenoftrust.com">Start For Free</a>
|
|
237
|
+
<a class="btn btn-line" href="/contact/">Contact Sales</a>
|
|
238
|
+
</div>
|
|
239
|
+
</div>
|
|
240
|
+
</div>
|
|
241
|
+
</section>
|
|
242
|
+
</main>
|
|
243
|
+
|
|
244
|
+
<footer class="site">
|
|
245
|
+
<div class="container">
|
|
246
|
+
<div class="foot-grid">
|
|
247
|
+
<div>
|
|
248
|
+
<a class="brand" href="/" aria-label="Token of Trust home">
|
|
249
|
+
<img src="/tenants/tokenoftrust/logo-wordmark.png" alt="Token of Trust" width="156" height="34" style="height:34px;width:auto;display:block">
|
|
250
|
+
</a>
|
|
251
|
+
<p class="foot-note">Customer verification and compliance for regulated ecommerce. 256-bit SSL. We will
|
|
252
|
+
NEVER sell your data. GDPR · CCPA · PIPEDA.</p>
|
|
253
|
+
</div>
|
|
254
|
+
<nav aria-label="Platform footer"><h3>Platform</h3><ul>
|
|
255
|
+
<li><a href="/product/">Identity Verification</a></li>
|
|
256
|
+
<li><a href="/product/">Age Assurance</a></li>
|
|
257
|
+
<li><a href="/product/">Fraud Prevention</a></li>
|
|
258
|
+
<li><a href="/product/">Compliance Evidence</a></li>
|
|
259
|
+
</ul></nav>
|
|
260
|
+
<nav aria-label="Industries footer"><h3>Industries</h3><ul>
|
|
261
|
+
<li><a href="/solutions/">All industries</a></li>
|
|
262
|
+
<li><a href="/solutions/">Tobacco & Vape</a></li>
|
|
263
|
+
<li><a href="/solutions/">Wine & Spirits</a></li>
|
|
264
|
+
<li><a href="/solutions/">Marketplaces</a></li>
|
|
265
|
+
</ul></nav>
|
|
266
|
+
<nav aria-label="Company footer"><h3>Company</h3><ul>
|
|
267
|
+
<li><a href="/company/">Company</a></li>
|
|
268
|
+
<li><a href="/pricing/">Pricing</a></li>
|
|
269
|
+
<li><a href="/contact/">Contact Sales</a></li>
|
|
270
|
+
<li><a href="/resources/">Resources</a></li>
|
|
271
|
+
</ul></nav>
|
|
272
|
+
</div>
|
|
273
|
+
<p class="copyright">© 2026 Token of Trust®. All rights reserved.</p>
|
|
274
|
+
</div>
|
|
275
|
+
</footer>
|
|
276
|
+
|
|
277
|
+
<script>
|
|
278
|
+
(function(){
|
|
279
|
+
var burger = document.getElementById('hamburger');
|
|
280
|
+
var nav = document.getElementById('primaryNav');
|
|
281
|
+
burger.addEventListener('click', function(){
|
|
282
|
+
var open = nav.classList.toggle('open');
|
|
283
|
+
burger.setAttribute('aria-expanded', open ? 'true' : 'false');
|
|
284
|
+
});
|
|
285
|
+
var io = new IntersectionObserver(function(entries){
|
|
286
|
+
entries.forEach(function(e){ if(e.isIntersecting){ e.target.classList.add('in'); io.unobserve(e.target); } });
|
|
287
|
+
}, {threshold:.12});
|
|
288
|
+
document.querySelectorAll('.reveal').forEach(function(el){ io.observe(el); });
|
|
289
|
+
})();
|
|
290
|
+
</script>
|
|
291
|
+
</body>
|
|
292
|
+
</html>
|