@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
package/tenants/tokenoftrust/content/pages-html/resources/integrations/shopify-integration.html
ADDED
|
@@ -0,0 +1,221 @@
|
|
|
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>Shopify Integration — Age & Identity Verification | Token of Trust</title>
|
|
8
|
+
<meta name="description" content="Ensure trust and security with Token of Trust's app integration for age and identity verification on your Shopify store. Minimize fraud risks and boost confidence.">
|
|
9
|
+
<link rel="canonical" href="https://tokenoftrust.com/resources/integrations/shopify-integration/">
|
|
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="Shopify + Token of Trust Integration">
|
|
14
|
+
<meta property="og:description" content="Age and identity verification for your Shopify and Shopify Plus store — minimize fraud risk and stay compliant.">
|
|
15
|
+
<meta property="og:url" content="https://tokenoftrust.com/resources/integrations/shopify-integration/">
|
|
16
|
+
<meta name="twitter:card" content="summary_large_image">
|
|
17
|
+
<meta name="twitter:title" content="Shopify + Token of Trust Integration">
|
|
18
|
+
<meta name="twitter:description" content="Age and identity verification for Shopify and Shopify Plus.">
|
|
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": "Shopify Integration | Token of Trust",
|
|
34
|
+
"url": "https://tokenoftrust.com/resources/integrations/shopify-integration/"
|
|
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
|
+
</head>
|
|
42
|
+
<body>
|
|
43
|
+
<a class="skip-link" href="#main">Skip to main content</a>
|
|
44
|
+
|
|
45
|
+
<header class="site">
|
|
46
|
+
<div class="container nav-row">
|
|
47
|
+
<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>
|
|
48
|
+
<nav class="primary" id="primaryNav" aria-label="Primary">
|
|
49
|
+
<ul>
|
|
50
|
+
<li><a href="/product/">Platform</a></li>
|
|
51
|
+
<li><a href="/solutions/">Industries</a></li>
|
|
52
|
+
<li><a href="/company/">Company</a></li>
|
|
53
|
+
<li><a class="active" href="/resources/" aria-current="page">Resources</a></li>
|
|
54
|
+
<li><a href="/pricing/">Pricing</a></li>
|
|
55
|
+
<li><a href="https://app.tokenoftrust.com">Login</a></li>
|
|
56
|
+
</ul>
|
|
57
|
+
</nav>
|
|
58
|
+
<div class="nav-cta">
|
|
59
|
+
<a class="btn btn-line" href="/contact/">Book Demo</a>
|
|
60
|
+
<a class="btn btn-green" href="https://app.tokenoftrust.com">Start For Free</a>
|
|
61
|
+
<button class="hamburger" id="hamburger" aria-label="Toggle navigation menu" aria-expanded="false" aria-controls="primaryNav"><span></span><span></span><span></span></button>
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
</header>
|
|
65
|
+
|
|
66
|
+
<main id="main">
|
|
67
|
+
<nav class="crumbs container" aria-label="Breadcrumb">
|
|
68
|
+
<a href="/">Home</a><span class="sep">›</span>
|
|
69
|
+
<a href="/resources/">Resources</a><span class="sep">›</span>
|
|
70
|
+
<a href="/resources/integrations/">Integrations</a><span class="sep">›</span>
|
|
71
|
+
<span aria-current="page">Shopify</span>
|
|
72
|
+
</nav>
|
|
73
|
+
|
|
74
|
+
<section class="hero" aria-labelledby="hero-heading">
|
|
75
|
+
<div class="container">
|
|
76
|
+
<span class="eyebrow"><span class="dot"></span>Shopify Integration</span>
|
|
77
|
+
<h1 id="hero-heading">Shopify + Token of Trust <span class="grad">Integration.</span></h1>
|
|
78
|
+
<p class="lede">
|
|
79
|
+
The most comprehensive identity verification solution for Shopify and Shopify Plus. Add age and
|
|
80
|
+
identity verification to your store to minimize fraud risk, stay compliant, and boost customer
|
|
81
|
+
confidence.
|
|
82
|
+
</p>
|
|
83
|
+
<div class="cta-row">
|
|
84
|
+
<a class="btn btn-green" href="https://app.tokenoftrust.com">Start For Free</a>
|
|
85
|
+
<a class="btn btn-line" href="https://help.tokenoftrust.com">Read the docs</a>
|
|
86
|
+
</div>
|
|
87
|
+
</div>
|
|
88
|
+
</section>
|
|
89
|
+
|
|
90
|
+
<section aria-labelledby="steps-heading">
|
|
91
|
+
<div class="container">
|
|
92
|
+
<div class="center reveal">
|
|
93
|
+
<span class="kicker">How to install</span>
|
|
94
|
+
<h2 id="steps-heading">Add verification to Shopify in a few steps</h2>
|
|
95
|
+
<p class="section-lede">Connect Token of Trust to your Shopify or Shopify Plus store and start
|
|
96
|
+
verifying customers at checkout.</p>
|
|
97
|
+
</div>
|
|
98
|
+
<div class="steps reveal">
|
|
99
|
+
<div class="step"><span class="num">1</span><h3>Create your account</h3><p>Sign up for Token of Trust and
|
|
100
|
+
set up your organization and verification policy.</p></div>
|
|
101
|
+
<div class="step"><span class="num">2</span><h3>Install the app</h3><p>Add the Token of Trust app to your
|
|
102
|
+
Shopify store from the Shopify App Store.</p></div>
|
|
103
|
+
<div class="step"><span class="num">3</span><h3>Configure your rules</h3><p>Choose which products or checkouts
|
|
104
|
+
require age or identity verification and set your workflows.</p></div>
|
|
105
|
+
<div class="step"><span class="num">4</span><h3>Go live</h3><p>Publish and start verifying customers automatically
|
|
106
|
+
at checkout — loyal buyers move through faster.</p></div>
|
|
107
|
+
</div>
|
|
108
|
+
<p class="center" style="margin-top:28px"><a class="btn btn-line" href="https://help.tokenoftrust.com">Read
|
|
109
|
+
the docs</a></p>
|
|
110
|
+
</div>
|
|
111
|
+
</section>
|
|
112
|
+
|
|
113
|
+
<section aria-labelledby="feat-heading">
|
|
114
|
+
<div class="container">
|
|
115
|
+
<div class="center reveal">
|
|
116
|
+
<span class="kicker">Why Token of Trust</span>
|
|
117
|
+
<h2 id="feat-heading">Comprehensive verification for your store</h2>
|
|
118
|
+
<p class="section-lede">Token of Trust offers a wide range of features to help you protect your
|
|
119
|
+
eCommerce site from fraud and abuse, comply with regulations, and archive customer verification
|
|
120
|
+
records securely.</p>
|
|
121
|
+
</div>
|
|
122
|
+
<div class="feature-grid reveal">
|
|
123
|
+
<article class="feat-card accent">
|
|
124
|
+
<h3>Compliance</h3>
|
|
125
|
+
<p>Comply with regulations such as age-restricted products with Token of Trust's identity
|
|
126
|
+
verification software. Our solution is trusted by businesses of all sizes to help them stay
|
|
127
|
+
compliant with regulations like GDPR, CCPA, and HIPAA.</p>
|
|
128
|
+
</article>
|
|
129
|
+
<article class="feat-card accent">
|
|
130
|
+
<h3>Fraud & Chargebacks</h3>
|
|
131
|
+
<p>Reduce fraud risk and chargeback headaches. Our software uses a variety of methods to verify
|
|
132
|
+
users and ensure that only legitimate users are able to create accounts and make purchases on
|
|
133
|
+
your site.</p>
|
|
134
|
+
</article>
|
|
135
|
+
<article class="feat-card accent">
|
|
136
|
+
<h3>Security</h3>
|
|
137
|
+
<p>Archive customer verification records on Token of Trust's secure vault to retrieve in the
|
|
138
|
+
future without storing data on your Shopify store. Our vault uses bank-level encryption, so you
|
|
139
|
+
can be confident that your data is safe and secure.</p>
|
|
140
|
+
</article>
|
|
141
|
+
<article class="feat-card accent">
|
|
142
|
+
<h3>Fast lane for loyal customers</h3>
|
|
143
|
+
<p>Token of Trust's patented platform recognizes your loyal customers and provides them with a
|
|
144
|
+
streamlined checkout experience. New customers are checked against authoritative databases in
|
|
145
|
+
seconds, and any customers that require additional information are handled within our automated
|
|
146
|
+
workflows.</p>
|
|
147
|
+
</article>
|
|
148
|
+
<article class="feat-card accent">
|
|
149
|
+
<h3>Reputation Reports</h3>
|
|
150
|
+
<p>View Reputation Reports for each consumer to understand what data was checked, how the checks
|
|
151
|
+
performed, and what decision was made. Access granular verification data while maintaining
|
|
152
|
+
compliance with privacy laws and regulations.</p>
|
|
153
|
+
</article>
|
|
154
|
+
<article class="feat-card accent">
|
|
155
|
+
<h3>Designed for privacy</h3>
|
|
156
|
+
<p>Consumers remain in control of identity and we keep sensitive data safe. Token of Trust uses
|
|
157
|
+
256-bit SSL encryption 100% of the time on every device, will never sell your data, and is
|
|
158
|
+
compliant with GDPR and global privacy laws.</p>
|
|
159
|
+
</article>
|
|
160
|
+
</div>
|
|
161
|
+
</div>
|
|
162
|
+
</section>
|
|
163
|
+
|
|
164
|
+
<section aria-labelledby="cta-heading">
|
|
165
|
+
<div class="container">
|
|
166
|
+
<div class="cta-band reveal">
|
|
167
|
+
<span class="kicker">Ready to get started?</span>
|
|
168
|
+
<h2 id="cta-heading">Questions about how Token of Trust can fit into your business?</h2>
|
|
169
|
+
<p>Our Sales team can help you find the right solution for your Shopify store. Start free, or talk
|
|
170
|
+
to sales.</p>
|
|
171
|
+
<div class="cta-row">
|
|
172
|
+
<a class="btn btn-green" href="https://app.tokenoftrust.com">Start For Free</a>
|
|
173
|
+
<a class="btn btn-line" href="/contact/">Contact Sales</a>
|
|
174
|
+
</div>
|
|
175
|
+
</div>
|
|
176
|
+
</div>
|
|
177
|
+
</section>
|
|
178
|
+
</main>
|
|
179
|
+
|
|
180
|
+
<footer class="site">
|
|
181
|
+
<div class="container">
|
|
182
|
+
<div class="foot-grid">
|
|
183
|
+
<div>
|
|
184
|
+
<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>
|
|
185
|
+
<p class="foot-note">Customer verification and compliance for regulated ecommerce. 256-bit SSL. We will
|
|
186
|
+
NEVER sell your data. GDPR · CCPA · PIPEDA.</p>
|
|
187
|
+
</div>
|
|
188
|
+
<nav aria-label="Platform footer"><h3>Platform</h3><ul>
|
|
189
|
+
<li><a href="/product/verification/">Identity Verification</a></li>
|
|
190
|
+
<li><a href="/product/age-assurance/">Age Assurance</a></li>
|
|
191
|
+
<li><a href="/product/fraud-prevention/">Fraud Prevention</a></li>
|
|
192
|
+
<li><a href="/product/">All products</a></li>
|
|
193
|
+
</ul></nav>
|
|
194
|
+
<nav aria-label="Industries footer"><h3>Industries</h3><ul>
|
|
195
|
+
<li><a href="/solutions/">All industries</a></li>
|
|
196
|
+
<li><a href="/vlp-cigars-and-tobacco/">Tobacco & Vape</a></li>
|
|
197
|
+
<li><a href="/vlp-alcohol/">Wine & Spirits</a></li>
|
|
198
|
+
<li><a href="/industries/cannabis/">Cannabis</a></li>
|
|
199
|
+
</ul></nav>
|
|
200
|
+
<nav aria-label="Company footer"><h3>Company</h3><ul>
|
|
201
|
+
<li><a href="/company/">Company</a></li>
|
|
202
|
+
<li><a href="/careers/">Careers</a></li>
|
|
203
|
+
<li><a href="/pricing/">Pricing</a></li>
|
|
204
|
+
<li><a href="/contact/">Contact Sales</a></li>
|
|
205
|
+
</ul></nav>
|
|
206
|
+
</div>
|
|
207
|
+
<p class="copyright">© 2026 Token of Trust®. All rights reserved.</p>
|
|
208
|
+
</div>
|
|
209
|
+
</footer>
|
|
210
|
+
|
|
211
|
+
<script>
|
|
212
|
+
(function(){
|
|
213
|
+
var burger = document.getElementById('hamburger');
|
|
214
|
+
var nav = document.getElementById('primaryNav');
|
|
215
|
+
burger.addEventListener('click', function(){ var open = nav.classList.toggle('open'); burger.setAttribute('aria-expanded', open ? 'true' : 'false'); });
|
|
216
|
+
var io = new IntersectionObserver(function(entries){ entries.forEach(function(e){ if(e.isIntersecting){ e.target.classList.add('in'); io.unobserve(e.target); } }); }, {threshold:.12});
|
|
217
|
+
document.querySelectorAll('.reveal').forEach(function(el){ io.observe(el); });
|
|
218
|
+
})();
|
|
219
|
+
</script>
|
|
220
|
+
</body>
|
|
221
|
+
</html>
|
|
@@ -0,0 +1,220 @@
|
|
|
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>WordPress Integration — Age & Identity Verification | Token of Trust</title>
|
|
8
|
+
<meta name="description" content="Fortify your WordPress and WooCommerce site with Token of Trust's app integration. Elevate trust through age and identity verification, reducing fraud risks effectively.">
|
|
9
|
+
<link rel="canonical" href="https://tokenoftrust.com/resources/integrations/wordpress/">
|
|
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="WordPress + Token of Trust Integration">
|
|
14
|
+
<meta property="og:description" content="Age and identity verification for your WordPress and WooCommerce site — elevate trust and reduce fraud risk.">
|
|
15
|
+
<meta property="og:url" content="https://tokenoftrust.com/resources/integrations/wordpress/">
|
|
16
|
+
<meta name="twitter:card" content="summary_large_image">
|
|
17
|
+
<meta name="twitter:title" content="WordPress + Token of Trust Integration">
|
|
18
|
+
<meta name="twitter:description" content="Age and identity verification for WordPress and WooCommerce.">
|
|
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": "WordPress Integration | Token of Trust",
|
|
34
|
+
"url": "https://tokenoftrust.com/resources/integrations/wordpress/"
|
|
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
|
+
</head>
|
|
42
|
+
<body>
|
|
43
|
+
<a class="skip-link" href="#main">Skip to main content</a>
|
|
44
|
+
|
|
45
|
+
<header class="site">
|
|
46
|
+
<div class="container nav-row">
|
|
47
|
+
<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>
|
|
48
|
+
<nav class="primary" id="primaryNav" aria-label="Primary">
|
|
49
|
+
<ul>
|
|
50
|
+
<li><a href="/product/">Platform</a></li>
|
|
51
|
+
<li><a href="/solutions/">Industries</a></li>
|
|
52
|
+
<li><a href="/company/">Company</a></li>
|
|
53
|
+
<li><a class="active" href="/resources/" aria-current="page">Resources</a></li>
|
|
54
|
+
<li><a href="/pricing/">Pricing</a></li>
|
|
55
|
+
<li><a href="https://app.tokenoftrust.com">Login</a></li>
|
|
56
|
+
</ul>
|
|
57
|
+
</nav>
|
|
58
|
+
<div class="nav-cta">
|
|
59
|
+
<a class="btn btn-line" href="/contact/">Book Demo</a>
|
|
60
|
+
<a class="btn btn-green" href="https://app.tokenoftrust.com">Start For Free</a>
|
|
61
|
+
<button class="hamburger" id="hamburger" aria-label="Toggle navigation menu" aria-expanded="false" aria-controls="primaryNav"><span></span><span></span><span></span></button>
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
</header>
|
|
65
|
+
|
|
66
|
+
<main id="main">
|
|
67
|
+
<nav class="crumbs container" aria-label="Breadcrumb">
|
|
68
|
+
<a href="/">Home</a><span class="sep">›</span>
|
|
69
|
+
<a href="/resources/">Resources</a><span class="sep">›</span>
|
|
70
|
+
<a href="/resources/integrations/">Integrations</a><span class="sep">›</span>
|
|
71
|
+
<span aria-current="page">WordPress</span>
|
|
72
|
+
</nav>
|
|
73
|
+
|
|
74
|
+
<section class="hero" aria-labelledby="hero-heading">
|
|
75
|
+
<div class="container">
|
|
76
|
+
<span class="eyebrow"><span class="dot"></span>WordPress Integration</span>
|
|
77
|
+
<h1 id="hero-heading">WordPress + Token of Trust <span class="grad">Integration.</span></h1>
|
|
78
|
+
<p class="lede">
|
|
79
|
+
The most comprehensive identity verification solution for WordPress and WooCommerce. Fortify your
|
|
80
|
+
site with age and identity verification to elevate trust and reduce fraud risk effectively.
|
|
81
|
+
</p>
|
|
82
|
+
<div class="cta-row">
|
|
83
|
+
<a class="btn btn-green" href="https://app.tokenoftrust.com">Start For Free</a>
|
|
84
|
+
<a class="btn btn-line" href="https://help.tokenoftrust.com">Read the docs</a>
|
|
85
|
+
</div>
|
|
86
|
+
</div>
|
|
87
|
+
</section>
|
|
88
|
+
|
|
89
|
+
<section aria-labelledby="steps-heading">
|
|
90
|
+
<div class="container">
|
|
91
|
+
<div class="center reveal">
|
|
92
|
+
<span class="kicker">How to install</span>
|
|
93
|
+
<h2 id="steps-heading">Add verification to WordPress in a few steps</h2>
|
|
94
|
+
<p class="section-lede">Connect Token of Trust to your WordPress or WooCommerce site and start
|
|
95
|
+
verifying customers at checkout.</p>
|
|
96
|
+
</div>
|
|
97
|
+
<div class="steps reveal">
|
|
98
|
+
<div class="step"><span class="num">1</span><h3>Create your account</h3><p>Sign up for Token of Trust and
|
|
99
|
+
set up your organization and verification policy.</p></div>
|
|
100
|
+
<div class="step"><span class="num">2</span><h3>Install the plugin</h3><p>Add the Token of Trust plugin
|
|
101
|
+
to your WordPress or WooCommerce site and connect your account.</p></div>
|
|
102
|
+
<div class="step"><span class="num">3</span><h3>Configure your rules</h3><p>Choose which products or checkouts
|
|
103
|
+
require age or identity verification and set your workflows.</p></div>
|
|
104
|
+
<div class="step"><span class="num">4</span><h3>Go live</h3><p>Publish and start verifying customers automatically
|
|
105
|
+
at checkout — loyal buyers move through faster.</p></div>
|
|
106
|
+
</div>
|
|
107
|
+
<p class="center" style="margin-top:28px"><a class="btn btn-line" href="https://help.tokenoftrust.com">Read
|
|
108
|
+
the docs</a></p>
|
|
109
|
+
</div>
|
|
110
|
+
</section>
|
|
111
|
+
|
|
112
|
+
<section aria-labelledby="feat-heading">
|
|
113
|
+
<div class="container">
|
|
114
|
+
<div class="center reveal">
|
|
115
|
+
<span class="kicker">Why Token of Trust</span>
|
|
116
|
+
<h2 id="feat-heading">Comprehensive verification for your site</h2>
|
|
117
|
+
<p class="section-lede">Token of Trust offers a wide range of features to help you protect your
|
|
118
|
+
eCommerce site from fraud and abuse, comply with regulations, and archive customer verification
|
|
119
|
+
records securely.</p>
|
|
120
|
+
</div>
|
|
121
|
+
<div class="feature-grid reveal">
|
|
122
|
+
<article class="feat-card accent">
|
|
123
|
+
<h3>Compliance</h3>
|
|
124
|
+
<p>Comply with regulations such as age-restricted products with Token of Trust's identity
|
|
125
|
+
verification software. Our solution is trusted by businesses of all sizes to help them stay
|
|
126
|
+
compliant with regulations like GDPR, CCPA, and HIPAA.</p>
|
|
127
|
+
</article>
|
|
128
|
+
<article class="feat-card accent">
|
|
129
|
+
<h3>Fraud & Chargebacks</h3>
|
|
130
|
+
<p>Reduce fraud risk and chargeback headaches. Our software uses a variety of methods to verify
|
|
131
|
+
users and ensure that only legitimate users are able to create accounts and make purchases on
|
|
132
|
+
your site.</p>
|
|
133
|
+
</article>
|
|
134
|
+
<article class="feat-card accent">
|
|
135
|
+
<h3>Security</h3>
|
|
136
|
+
<p>Archive customer verification records on Token of Trust's secure vault to retrieve in the
|
|
137
|
+
future without storing data on your WordPress website. Our vault uses bank-level encryption, so
|
|
138
|
+
you can be confident that your data is safe and secure.</p>
|
|
139
|
+
</article>
|
|
140
|
+
<article class="feat-card accent">
|
|
141
|
+
<h3>Fast lane for loyal customers</h3>
|
|
142
|
+
<p>Token of Trust's patented platform recognizes your loyal customers and provides them with a
|
|
143
|
+
streamlined checkout experience. New customers are checked against authoritative databases in
|
|
144
|
+
seconds, and any customers that require additional information are handled within our automated
|
|
145
|
+
workflows.</p>
|
|
146
|
+
</article>
|
|
147
|
+
<article class="feat-card accent">
|
|
148
|
+
<h3>Reputation Reports</h3>
|
|
149
|
+
<p>View Reputation Reports for each consumer to understand what data was checked, how the checks
|
|
150
|
+
performed, and what decision was made. Access granular verification data while maintaining
|
|
151
|
+
compliance with privacy laws and regulations.</p>
|
|
152
|
+
</article>
|
|
153
|
+
<article class="feat-card accent">
|
|
154
|
+
<h3>Designed for privacy</h3>
|
|
155
|
+
<p>Consumers remain in control of identity and we keep sensitive data safe. Token of Trust uses
|
|
156
|
+
256-bit SSL encryption 100% of the time on every device, will never sell your data, and is
|
|
157
|
+
compliant with GDPR and global privacy laws.</p>
|
|
158
|
+
</article>
|
|
159
|
+
</div>
|
|
160
|
+
</div>
|
|
161
|
+
</section>
|
|
162
|
+
|
|
163
|
+
<section aria-labelledby="cta-heading">
|
|
164
|
+
<div class="container">
|
|
165
|
+
<div class="cta-band reveal">
|
|
166
|
+
<span class="kicker">Ready to get started?</span>
|
|
167
|
+
<h2 id="cta-heading">Questions about how Token of Trust can fit into your business?</h2>
|
|
168
|
+
<p>Our Sales team can help you find the right solution for your WordPress or WooCommerce site. Start
|
|
169
|
+
free, or talk to sales.</p>
|
|
170
|
+
<div class="cta-row">
|
|
171
|
+
<a class="btn btn-green" href="https://app.tokenoftrust.com">Start For Free</a>
|
|
172
|
+
<a class="btn btn-line" href="/contact/">Contact Sales</a>
|
|
173
|
+
</div>
|
|
174
|
+
</div>
|
|
175
|
+
</div>
|
|
176
|
+
</section>
|
|
177
|
+
</main>
|
|
178
|
+
|
|
179
|
+
<footer class="site">
|
|
180
|
+
<div class="container">
|
|
181
|
+
<div class="foot-grid">
|
|
182
|
+
<div>
|
|
183
|
+
<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>
|
|
184
|
+
<p class="foot-note">Customer verification and compliance for regulated ecommerce. 256-bit SSL. We will
|
|
185
|
+
NEVER sell your data. GDPR · CCPA · PIPEDA.</p>
|
|
186
|
+
</div>
|
|
187
|
+
<nav aria-label="Platform footer"><h3>Platform</h3><ul>
|
|
188
|
+
<li><a href="/product/verification/">Identity Verification</a></li>
|
|
189
|
+
<li><a href="/product/age-assurance/">Age Assurance</a></li>
|
|
190
|
+
<li><a href="/product/fraud-prevention/">Fraud Prevention</a></li>
|
|
191
|
+
<li><a href="/product/">All products</a></li>
|
|
192
|
+
</ul></nav>
|
|
193
|
+
<nav aria-label="Industries footer"><h3>Industries</h3><ul>
|
|
194
|
+
<li><a href="/solutions/">All industries</a></li>
|
|
195
|
+
<li><a href="/vlp-cigars-and-tobacco/">Tobacco & Vape</a></li>
|
|
196
|
+
<li><a href="/vlp-alcohol/">Wine & Spirits</a></li>
|
|
197
|
+
<li><a href="/industries/cannabis/">Cannabis</a></li>
|
|
198
|
+
</ul></nav>
|
|
199
|
+
<nav aria-label="Company footer"><h3>Company</h3><ul>
|
|
200
|
+
<li><a href="/company/">Company</a></li>
|
|
201
|
+
<li><a href="/careers/">Careers</a></li>
|
|
202
|
+
<li><a href="/pricing/">Pricing</a></li>
|
|
203
|
+
<li><a href="/contact/">Contact Sales</a></li>
|
|
204
|
+
</ul></nav>
|
|
205
|
+
</div>
|
|
206
|
+
<p class="copyright">© 2026 Token of Trust®. All rights reserved.</p>
|
|
207
|
+
</div>
|
|
208
|
+
</footer>
|
|
209
|
+
|
|
210
|
+
<script>
|
|
211
|
+
(function(){
|
|
212
|
+
var burger = document.getElementById('hamburger');
|
|
213
|
+
var nav = document.getElementById('primaryNav');
|
|
214
|
+
burger.addEventListener('click', function(){ var open = nav.classList.toggle('open'); burger.setAttribute('aria-expanded', open ? 'true' : 'false'); });
|
|
215
|
+
var io = new IntersectionObserver(function(entries){ entries.forEach(function(e){ if(e.isIntersecting){ e.target.classList.add('in'); io.unobserve(e.target); } }); }, {threshold:.12});
|
|
216
|
+
document.querySelectorAll('.reveal').forEach(function(el){ io.observe(el); });
|
|
217
|
+
})();
|
|
218
|
+
</script>
|
|
219
|
+
</body>
|
|
220
|
+
</html>
|
|
@@ -0,0 +1,172 @@
|
|
|
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>Integrations — Shopify, BigCommerce, WooCommerce & API | Token of Trust</title>
|
|
8
|
+
<meta name="description" content="Add Token of Trust to your stack in minutes: native integrations for Shopify, BigCommerce, and WordPress & WooCommerce, plus a flexible API to build your own.">
|
|
9
|
+
<link rel="canonical" href="https://tokenoftrust.com/resources/integrations/">
|
|
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="Integrations">
|
|
14
|
+
<meta property="og:description" content="Native integrations for Shopify, BigCommerce, and WooCommerce, plus a flexible API.">
|
|
15
|
+
<meta property="og:url" content="https://tokenoftrust.com/resources/integrations/">
|
|
16
|
+
<meta name="twitter:card" content="summary_large_image">
|
|
17
|
+
<meta name="twitter:title" content="Token of Trust — Integrations">
|
|
18
|
+
<meta name="twitter:description" content="Add Token of Trust to your stack in minutes.">
|
|
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": "Integrations",
|
|
34
|
+
"url": "https://tokenoftrust.com/resources/integrations/"
|
|
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
|
+
</head>
|
|
42
|
+
<body>
|
|
43
|
+
<a class="skip-link" href="#main">Skip to main content</a>
|
|
44
|
+
|
|
45
|
+
<header class="site">
|
|
46
|
+
<div class="container nav-row">
|
|
47
|
+
<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>
|
|
48
|
+
<nav class="primary" id="primaryNav" aria-label="Primary">
|
|
49
|
+
<ul>
|
|
50
|
+
<li><a href="/product/">Platform</a></li>
|
|
51
|
+
<li><a href="/solutions/">Industries</a></li>
|
|
52
|
+
<li><a href="/company/">Company</a></li>
|
|
53
|
+
<li><a class="active" href="/resources/" aria-current="page">Resources</a></li>
|
|
54
|
+
<li><a href="/pricing/">Pricing</a></li>
|
|
55
|
+
<li><a href="https://app.tokenoftrust.com">Login</a></li>
|
|
56
|
+
</ul>
|
|
57
|
+
</nav>
|
|
58
|
+
<div class="nav-cta">
|
|
59
|
+
<a class="btn btn-line" href="/contact/">Book Demo</a>
|
|
60
|
+
<a class="btn btn-green" href="https://app.tokenoftrust.com">Start For Free</a>
|
|
61
|
+
<button class="hamburger" id="hamburger" aria-label="Toggle navigation menu" aria-expanded="false" aria-controls="primaryNav"><span></span><span></span><span></span></button>
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
</header>
|
|
65
|
+
|
|
66
|
+
<main id="main">
|
|
67
|
+
<nav class="container crumbs" aria-label="Breadcrumb"><a href="/">Home</a><span class="sep">›</span><a href="/resources/">Resources</a><span class="sep">›</span>Integrations</nav>
|
|
68
|
+
|
|
69
|
+
<section class="hero" aria-labelledby="hero-heading">
|
|
70
|
+
<div class="container">
|
|
71
|
+
<span class="eyebrow"><span class="dot"></span>Integrations</span>
|
|
72
|
+
<h1 id="hero-heading">Add Token of Trust to <span class="grad">your stack in minutes.</span></h1>
|
|
73
|
+
<p class="lede">Native integrations for the platforms you already run — plus a flexible API when you want
|
|
74
|
+
to build exactly what you need.</p>
|
|
75
|
+
<div class="cta-row">
|
|
76
|
+
<a class="btn btn-green" href="https://app.tokenoftrust.com">Start For Free</a>
|
|
77
|
+
<a class="btn btn-line" href="/contact/">Book Demo</a>
|
|
78
|
+
</div>
|
|
79
|
+
</div>
|
|
80
|
+
</section>
|
|
81
|
+
|
|
82
|
+
<div class="proof" aria-label="Coverage and trust signals">
|
|
83
|
+
<div class="container">
|
|
84
|
+
<span><b>200+</b> countries covered</span>
|
|
85
|
+
<span class="sep" aria-hidden="true">·</span>
|
|
86
|
+
<span><b>GDPR · CCPA · PIPEDA</b> compliant</span>
|
|
87
|
+
<span class="sep" aria-hidden="true">·</span>
|
|
88
|
+
<span><b>256-bit SSL</b> encryption</span>
|
|
89
|
+
<span class="sep" aria-hidden="true">·</span>
|
|
90
|
+
<span>We will <b>never sell your data</b></span>
|
|
91
|
+
</div>
|
|
92
|
+
</div>
|
|
93
|
+
|
|
94
|
+
<section aria-labelledby="int-heading">
|
|
95
|
+
<div class="container">
|
|
96
|
+
<div class="center reveal">
|
|
97
|
+
<span class="kicker">Platforms & API</span>
|
|
98
|
+
<h2 id="int-heading">Connect the way that fits you</h2>
|
|
99
|
+
<p class="section-lede">Install a native app for your ecommerce platform, or build directly against our
|
|
100
|
+
API.</p>
|
|
101
|
+
</div>
|
|
102
|
+
<div class="feature-grid">
|
|
103
|
+
<article class="feat-card accent reveal"><h3>Shopify</h3><p>Add identity and age verification to your Shopify
|
|
104
|
+
store.</p><a class="card-link" href="/resources/integrations/shopify-integration/">Explore →</a></article>
|
|
105
|
+
<article class="feat-card accent reveal"><h3>BigCommerce</h3><p>Verify customers and stay compliant on
|
|
106
|
+
BigCommerce.</p><a class="card-link" href="/resources/integrations/bigcommerce-integration/">Explore →</a></article>
|
|
107
|
+
<article class="feat-card accent reveal"><h3>WordPress & WooCommerce</h3><p>Drop-in verification for
|
|
108
|
+
WordPress and WooCommerce checkouts.</p><a class="card-link" href="/resources/integrations/wordpress/">Explore
|
|
109
|
+
→</a></article>
|
|
110
|
+
<article class="feat-card accent reveal"><h3>Build with our API</h3><p>Integrate verification into any
|
|
111
|
+
custom app or workflow.</p><a class="card-link" href="https://help.tokenoftrust.com">Read the docs →</a></article>
|
|
112
|
+
</div>
|
|
113
|
+
</div>
|
|
114
|
+
</section>
|
|
115
|
+
|
|
116
|
+
<section aria-labelledby="cta-heading">
|
|
117
|
+
<div class="container">
|
|
118
|
+
<div class="cta-band reveal">
|
|
119
|
+
<span class="kicker">Get started</span>
|
|
120
|
+
<h2 id="cta-heading">Build trust into every transaction</h2>
|
|
121
|
+
<p>Start free — no credit card needed. Or talk to our team about integrating Token of Trust with your platform.</p>
|
|
122
|
+
<div class="cta-row">
|
|
123
|
+
<a class="btn btn-ent" href="https://app.tokenoftrust.com">Start For Free</a>
|
|
124
|
+
<a class="btn btn-line" href="/contact/">Contact Sales</a>
|
|
125
|
+
</div>
|
|
126
|
+
</div>
|
|
127
|
+
</div>
|
|
128
|
+
</section>
|
|
129
|
+
</main>
|
|
130
|
+
|
|
131
|
+
<footer class="site">
|
|
132
|
+
<div class="container">
|
|
133
|
+
<div class="foot-grid">
|
|
134
|
+
<div>
|
|
135
|
+
<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>
|
|
136
|
+
<p class="foot-note">Customer verification and compliance for regulated ecommerce. 256-bit SSL. We will
|
|
137
|
+
NEVER sell your data. GDPR · CCPA · PIPEDA.</p>
|
|
138
|
+
</div>
|
|
139
|
+
<nav aria-label="Platform footer"><h3>Platform</h3><ul>
|
|
140
|
+
<li><a href="/product/verification/">Identity Verification</a></li>
|
|
141
|
+
<li><a href="/product/age-assurance/">Age Assurance</a></li>
|
|
142
|
+
<li><a href="/product/fraud-prevention/">Fraud Prevention</a></li>
|
|
143
|
+
<li><a href="/product/">All products</a></li>
|
|
144
|
+
</ul></nav>
|
|
145
|
+
<nav aria-label="Industries footer"><h3>Industries</h3><ul>
|
|
146
|
+
<li><a href="/solutions/">All industries</a></li>
|
|
147
|
+
<li><a href="/vlp-cigars-and-tobacco/">Tobacco & Vape</a></li>
|
|
148
|
+
<li><a href="/vlp-alcohol/">Wine & Spirits</a></li>
|
|
149
|
+
<li><a href="/industries/cannabis/">Cannabis</a></li>
|
|
150
|
+
</ul></nav>
|
|
151
|
+
<nav aria-label="Company footer"><h3>Company</h3><ul>
|
|
152
|
+
<li><a href="/company/">Company</a></li>
|
|
153
|
+
<li><a href="/careers/">Careers</a></li>
|
|
154
|
+
<li><a href="/pricing/">Pricing</a></li>
|
|
155
|
+
<li><a href="/contact/">Contact Sales</a></li>
|
|
156
|
+
</ul></nav>
|
|
157
|
+
</div>
|
|
158
|
+
<p class="copyright">© 2026 Token of Trust®. All rights reserved.</p>
|
|
159
|
+
</div>
|
|
160
|
+
</footer>
|
|
161
|
+
|
|
162
|
+
<script>
|
|
163
|
+
(function(){
|
|
164
|
+
var burger = document.getElementById('hamburger');
|
|
165
|
+
var nav = document.getElementById('primaryNav');
|
|
166
|
+
burger.addEventListener('click', function(){ var open = nav.classList.toggle('open'); burger.setAttribute('aria-expanded', open ? 'true' : 'false'); });
|
|
167
|
+
var io = new IntersectionObserver(function(entries){ entries.forEach(function(e){ if(e.isIntersecting){ e.target.classList.add('in'); io.unobserve(e.target); } }); }, {threshold:.12});
|
|
168
|
+
document.querySelectorAll('.reveal').forEach(function(el){ io.observe(el); });
|
|
169
|
+
})();
|
|
170
|
+
</script>
|
|
171
|
+
</body>
|
|
172
|
+
</html>
|