@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,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"announcement": "Free US shipping on orders over $100!",
|
|
3
|
+
"nav": [
|
|
4
|
+
{ "label": "Texas Compliant Disposables", "href": "/collections/texas-compliant-disposables" },
|
|
5
|
+
{ "label": "Disposables", "href": "/collections/disposables" },
|
|
6
|
+
{ "label": "E-Liquid", "href": "/collections/e-liquids" },
|
|
7
|
+
{ "label": "Devices", "href": "/collections/devices" },
|
|
8
|
+
{ "label": "Coils & Parts", "href": "/collections/coils-parts" },
|
|
9
|
+
{ "label": "Nic Pouches", "href": "/collections/nicotine-pouches" },
|
|
10
|
+
{ "label": "New Products", "href": "/collections/new-products" },
|
|
11
|
+
{ "label": "On Sale", "href": "/collections/on-sale" }
|
|
12
|
+
],
|
|
13
|
+
"footer": {
|
|
14
|
+
"columns": [
|
|
15
|
+
{
|
|
16
|
+
"title": "Shop",
|
|
17
|
+
"links": [
|
|
18
|
+
{ "label": "Disposables", "href": "/collections/disposables" },
|
|
19
|
+
{ "label": "E-Liquid", "href": "/collections/e-liquids" },
|
|
20
|
+
{ "label": "Devices", "href": "/collections/devices" },
|
|
21
|
+
{ "label": "Coils & Parts", "href": "/collections/coils-parts" },
|
|
22
|
+
{ "label": "Nic Pouches", "href": "/collections/nicotine-pouches" },
|
|
23
|
+
{ "label": "On Sale", "href": "/collections/on-sale" }
|
|
24
|
+
]
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"title": "Help",
|
|
28
|
+
"links": [
|
|
29
|
+
{ "label": "About Us", "href": "/pages/about-us" },
|
|
30
|
+
{ "label": "Contact Us", "href": "/pages/contact-us" },
|
|
31
|
+
{ "label": "Shipping & Returns", "href": "/pages/shipping-returns" },
|
|
32
|
+
{ "label": "News & Blog", "href": "/blogs/news" }
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"title": "Company",
|
|
37
|
+
"links": [
|
|
38
|
+
{ "label": "New Products", "href": "/collections/new-products" },
|
|
39
|
+
{ "label": "Texas Compliant", "href": "/collections/texas-compliant-disposables" },
|
|
40
|
+
{ "label": "Privacy Policy", "href": "/pages/privacy-policy" },
|
|
41
|
+
{ "label": "Big D CBD", "href": "https://bigdcbd.com/" }
|
|
42
|
+
]
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"social": []
|
|
46
|
+
}
|
|
47
|
+
}
|
|
@@ -0,0 +1,463 @@
|
|
|
1
|
+
<head>
|
|
2
|
+
<title>Explore Top Vape Products and Accessories at Big D Vapor | Big D Vapor</title>
|
|
3
|
+
<meta name="description" content="Discover a wide selection of high-quality vape products and e-liquids at Big D Vapor. Browse our collection and elevate your vaping experience today.">
|
|
4
|
+
<link rel="canonical" href="https://bigdvapor.net/">
|
|
5
|
+
<meta name="robots" content="index,follow,max-image-preview:large">
|
|
6
|
+
<meta property="og:type" content="website">
|
|
7
|
+
<meta property="og:site_name" content="Big D Vapor">
|
|
8
|
+
<meta property="og:title" content="Explore Top Vape Products and Accessories at Big D Vapor">
|
|
9
|
+
<meta property="og:description" content="Discover a wide selection of high-quality vape products and e-liquids at Big D Vapor. Browse our collection and elevate your vaping experience today.">
|
|
10
|
+
<meta property="og:url" content="https://bigdvapor.net/">
|
|
11
|
+
<meta property="og:image" content="/tenants/bigdvapor/img/og.jpg">
|
|
12
|
+
<meta name="twitter:card" content="summary_large_image">
|
|
13
|
+
<script type="application/ld+json">
|
|
14
|
+
{
|
|
15
|
+
"@context": "https://schema.org",
|
|
16
|
+
"@graph": [
|
|
17
|
+
{ "@type": "Organization", "@id": "https://bigdvapor.net/#org", "name": "Big D Vapor", "url": "https://bigdvapor.net/", "logo": "https://bigdvapor.net/tenants/bigdvapor/logo-wordmark.png", "description": "Big D Vapor offers a wide selection of high-quality vape products, disposables, e-liquids, devices, coils, and nicotine pouches." },
|
|
18
|
+
{ "@type": "WebSite", "@id": "https://bigdvapor.net/#website", "url": "https://bigdvapor.net/", "name": "Big D Vapor", "publisher": { "@id": "https://bigdvapor.net/#org" }, "potentialAction": { "@type": "SearchAction", "target": "https://bigdvapor.net/search?q={search_term_string}", "query-input": "required name=search_term_string" } }
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
</script>
|
|
22
|
+
<link rel="stylesheet" href="/tenants/bigdvapor/pages/home.css">
|
|
23
|
+
</head>
|
|
24
|
+
|
|
25
|
+
<main id="main">
|
|
26
|
+
<!-- 1. HERO — two-up -->
|
|
27
|
+
<section class="hero2" aria-label="Featured">
|
|
28
|
+
<div class="container">
|
|
29
|
+
<a href="/collections/texas-compliant-disposables"><img src="/tenants/bigdvapor/img/hero-texas.jpg" alt="Texas-compliant disposable vapes from Big D Vapor" width="1600" height="575" fetchpriority="high"></a>
|
|
30
|
+
<a class="promo-tile" href="/collections/e-liquids" aria-label="E-Liquid available in 100ml"></a>
|
|
31
|
+
</div>
|
|
32
|
+
</section>
|
|
33
|
+
|
|
34
|
+
<!-- 2. Promo cards -->
|
|
35
|
+
<section class="promos" aria-label="Promotions">
|
|
36
|
+
<div class="container">
|
|
37
|
+
<a class="promo-card promo-card--blue" href="/collections/new-products"><h3>New Additions</h3><p>Hot New Products Just In!</p><span class="link">Shop New Products</span></a>
|
|
38
|
+
<a class="promo-card promo-card--red" href="/collections/on-sale"><h3>On Sale</h3><p>Deal Must-Haves!</p><span class="link">Shop On Sale</span></a>
|
|
39
|
+
<a class="promo-card promo-card--blue" href="/collections/best-sellers" style="background:linear-gradient(160deg,#0f7d6b,#0a5c73)"><h3>Best Sellers</h3><p>What everyone's buying</p><span class="link">Shop Best Sellers</span></a>
|
|
40
|
+
</div>
|
|
41
|
+
</section>
|
|
42
|
+
|
|
43
|
+
<!-- 3. Categories (icon cards) -->
|
|
44
|
+
<section class="cats" aria-labelledby="cats-h">
|
|
45
|
+
<div class="container">
|
|
46
|
+
<h2 id="cats-h">Categories</h2>
|
|
47
|
+
<div class="grid">
|
|
48
|
+
<a class="cat-icon-card" href="/collections/disposables"><span class="ico"><svg viewBox="0 0 48 48"><rect x="18" y="6" width="12" height="30" rx="3"/><path d="M20 36v4a4 4 0 0 0 8 0v-4"/><path d="M21 12h6"/></svg></span><span>Disposables</span></a>
|
|
49
|
+
<a class="cat-icon-card" href="/collections/e-liquids"><span class="ico"><svg viewBox="0 0 48 48"><path d="M19 8h10v6l4 6v18a4 4 0 0 1-4 4H19a4 4 0 0 1-4-4V20l4-6z"/><path d="M22 30h4"/></svg></span><span>E-Liquids</span></a>
|
|
50
|
+
<a class="cat-icon-card" href="/collections/devices"><span class="ico"><svg viewBox="0 0 48 48"><rect x="16" y="6" width="16" height="36" rx="4"/><rect x="21" y="12" width="6" height="8" rx="1"/><path d="M22 28h4"/></svg></span><span>Devices</span></a>
|
|
51
|
+
<a class="cat-icon-card" href="/collections/coils-parts"><span class="ico"><svg viewBox="0 0 48 48"><circle cx="24" cy="24" r="9"/><path d="M24 8v7M24 33v7M8 24h7M33 24h7"/></svg></span><span>Coils & Parts</span></a>
|
|
52
|
+
<a class="cat-icon-card" href="/collections/on-sale"><span class="ico"><svg viewBox="0 0 48 48"><path d="M8 24 24 8l16 16-16 16z"/><circle cx="19" cy="19" r="2.5"/></svg></span><span>On Sale</span></a>
|
|
53
|
+
</div>
|
|
54
|
+
</div>
|
|
55
|
+
</section>
|
|
56
|
+
|
|
57
|
+
<!-- SHELF: New Additions (12 products) -->
|
|
58
|
+
<section class="section shelf" aria-labelledby="shelf-new-products">
|
|
59
|
+
<div class="container">
|
|
60
|
+
<div class="sec-head sec-head--between">
|
|
61
|
+
<div><span class="eyebrow">Shop</span><h2 id="shelf-new-products">New Additions</h2></div>
|
|
62
|
+
<a class="link-more" href="/collections/new-products">View all →</a>
|
|
63
|
+
</div>
|
|
64
|
+
<div class="pcarousel">
|
|
65
|
+
<article class="pcard">
|
|
66
|
+
<a href="/products/viho-trx-50k-disposable-vape-50-000-puff-copy">
|
|
67
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/viho-trx-50k-disposable-vape-50000-puff-3977378.png?v=1772053218" alt="VIHO TRX 50K disposable vape with sleek design, offering 50,000 puffs of flavorful vapor for salt nicotine e-cigarette users." loading="lazy"></div>
|
|
68
|
+
<p class="pcard__vendor">VIHO</p>
|
|
69
|
+
<h3 class="pcard__title">VIHO TRX 50K Disposable Vape | 50,000 Puff</h3>
|
|
70
|
+
<p class="pcard__price">$16.95</p>
|
|
71
|
+
</a>
|
|
72
|
+
</article>
|
|
73
|
+
<article class="pcard">
|
|
74
|
+
<a href="/products/one-tank-40k-disposable">
|
|
75
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/one-tank-40k-disposable-4833086.jpg?v=1772051512" alt="One Tank 40K disposable vape pen with sleek design and compact size, ideal for easy, on-the-go vaping." loading="lazy"></div>
|
|
76
|
+
<p class="pcard__vendor">One Tank</p>
|
|
77
|
+
<h3 class="pcard__title">One Tank 40K Disposable</h3>
|
|
78
|
+
<p class="pcard__price">$15.95</p>
|
|
79
|
+
</a>
|
|
80
|
+
</article>
|
|
81
|
+
<article class="pcard">
|
|
82
|
+
<a href="/products/ebcreate-bc-pro-2026-40k-disposable">
|
|
83
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/ebcreate-bc-pro-2026-40k-disposable-4382124.webp?v=1777279571" alt="EBCREATE BC PRO 2026 disposable vape device with sleek design and compact size for easy use and portability." loading="lazy"></div>
|
|
84
|
+
<p class="pcard__vendor">EBCREATE</p>
|
|
85
|
+
<h3 class="pcard__title">EBCREATE BC PRO 2026 | 40K Disposable</h3>
|
|
86
|
+
<p class="pcard__price">$17.95</p>
|
|
87
|
+
</a>
|
|
88
|
+
</article>
|
|
89
|
+
<article class="pcard">
|
|
90
|
+
<a href="/products/dinner-lady-galax-60k-disposable">
|
|
91
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/dinner-lady-galax-60k-disposable-2458281.jpg?v=1772051507" alt="Dinner Lady Galax 60K disposable vape device with colorful galaxy design and sleek cylindrical shape." loading="lazy"></div>
|
|
92
|
+
<p class="pcard__vendor">Dinner Lady</p>
|
|
93
|
+
<h3 class="pcard__title">Dinner Lady Galax 60K Disposable</h3>
|
|
94
|
+
<p class="pcard__price">$18.95</p>
|
|
95
|
+
</a>
|
|
96
|
+
</article>
|
|
97
|
+
<article class="pcard">
|
|
98
|
+
<a href="/products/dinner-lady-desserts-40k-disposable">
|
|
99
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/dinner-lady-desserts-40k-disposable-1725868.png?v=1774510094" alt="Dinner Lady Desserts 40K disposable vape device with colorful packaging, designed for flavor-rich vaping experience." loading="lazy"></div>
|
|
100
|
+
<p class="pcard__vendor">Dinner Lady</p>
|
|
101
|
+
<h3 class="pcard__title">Dinner Lady Desserts 40K Disposable</h3>
|
|
102
|
+
<p class="pcard__price">$19.95</p>
|
|
103
|
+
</a>
|
|
104
|
+
</article>
|
|
105
|
+
<article class="pcard">
|
|
106
|
+
<a href="/products/dojo-purex-60k-disposable-vape">
|
|
107
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/BULERAZZICE_1.png?v=1779472166" alt="DOJO Purex 60K disposable vape in black with sleek design, featuring a mouthpiece and LED indicator for vaping convenience" loading="lazy"></div>
|
|
108
|
+
<p class="pcard__vendor">DOJO</p>
|
|
109
|
+
<h3 class="pcard__title">DOJO Purex 60K Disposable Vape</h3>
|
|
110
|
+
<p class="pcard__price">$17.95</p>
|
|
111
|
+
</a>
|
|
112
|
+
</article>
|
|
113
|
+
<article class="pcard">
|
|
114
|
+
<a href="/products/geek-bar-pulse-15k-disposable-vape-copy">
|
|
115
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/BlackMintz.png?v=1772141017" alt="Geek Bar Pulse 15K disposable vape in black with mint flavor, featuring sleek design and compact handheld size." loading="lazy"></div>
|
|
116
|
+
<p class="pcard__vendor">Geek Bar</p>
|
|
117
|
+
<h3 class="pcard__title">Geek Bar Pulse 15K Disposable Vape</h3>
|
|
118
|
+
<p class="pcard__price">$15.95</p>
|
|
119
|
+
</a>
|
|
120
|
+
</article>
|
|
121
|
+
<article class="pcard">
|
|
122
|
+
<a href="/products/pacha-mama-25k-disposable-vape">
|
|
123
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/BlueberryBurst.jpg?v=1779124047" alt="Pacha Mama Blueberry Burst disposable vape with blue and silver design, featuring a sleek, portable vape device for on-the-go vaping." loading="lazy"></div>
|
|
124
|
+
<p class="pcard__vendor">Pacha Mama</p>
|
|
125
|
+
<h3 class="pcard__title">Pacha Mama 25K Disposable Vape</h3>
|
|
126
|
+
<p class="pcard__price">$17.95</p>
|
|
127
|
+
</a>
|
|
128
|
+
</article>
|
|
129
|
+
<article class="pcard">
|
|
130
|
+
<a href="/products/mr-fog-45k-puff-disposable-kit">
|
|
131
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/mr-fog-45k-puff-disposable-kit-2073221.jpg?v=1778233575" alt="Mr. Fog 45K Puff Disposable Vape Kit showing sleek black design and mouthpiece, compact and portable for easy vaping." loading="lazy"></div>
|
|
132
|
+
<p class="pcard__vendor">Mr. Fog</p>
|
|
133
|
+
<h3 class="pcard__title">Mr. Fog 45K Puff Disposable Kit</h3>
|
|
134
|
+
<p class="pcard__price">From $16.95</p>
|
|
135
|
+
</a>
|
|
136
|
+
</article>
|
|
137
|
+
<article class="pcard">
|
|
138
|
+
<a href="/products/tyn-pro-50k-disposable">
|
|
139
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/tyn-pro-50k-disposable-8944036.webp?v=1778059753" alt="TYN Pro 50K Disposable Vape showing sleek design and mouthpiece, ideal for extended vaping sessions." loading="lazy"></div>
|
|
140
|
+
<p class="pcard__vendor">TYN</p>
|
|
141
|
+
<h3 class="pcard__title">TYN Pro 50K Disposable</h3>
|
|
142
|
+
<p class="pcard__price">$16.95</p>
|
|
143
|
+
</a>
|
|
144
|
+
</article>
|
|
145
|
+
<article class="pcard">
|
|
146
|
+
<a href="/products/dinner-lady-snap-pro-35k-disposable-kit">
|
|
147
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/dinner-lady-snap-pro-35k-disposable-kit-6667193.webp?v=1777799656" alt="Dinner Lady Snap Pro 35K disposable vape kit with sleek design, featuring mouthpiece and colorful branding." loading="lazy"></div>
|
|
148
|
+
<p class="pcard__vendor">Dinner Lady</p>
|
|
149
|
+
<h3 class="pcard__title">Dinner Lady Snap Pro 35K Disposable Kit</h3>
|
|
150
|
+
<p class="pcard__price">$19.95</p>
|
|
151
|
+
</a>
|
|
152
|
+
</article>
|
|
153
|
+
<article class="pcard">
|
|
154
|
+
<a href="/products/juice-head-flex-freeze-50k-puffs">
|
|
155
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/juice-head-flex-freeze-50k-puffs-6853860.webp?v=1774510094" alt="Juice Head Flex Freeze disposable vape pen with colorful branding and sleek design, capable of 50,000 puffs." loading="lazy"></div>
|
|
156
|
+
<p class="pcard__vendor">Juice Head</p>
|
|
157
|
+
<h3 class="pcard__title">Juice Head Flex Freeze 50K Puffs</h3>
|
|
158
|
+
<p class="pcard__price">$16.95</p>
|
|
159
|
+
</a>
|
|
160
|
+
</article>
|
|
161
|
+
</div>
|
|
162
|
+
</div>
|
|
163
|
+
</section>
|
|
164
|
+
|
|
165
|
+
<!-- SHELF: Best Sellers (12 products) -->
|
|
166
|
+
<section class="section shelf" aria-labelledby="shelf-best-sellers">
|
|
167
|
+
<div class="container">
|
|
168
|
+
<div class="sec-head sec-head--between">
|
|
169
|
+
<div><span class="eyebrow">Shop</span><h2 id="shelf-best-sellers">Best Sellers</h2></div>
|
|
170
|
+
<a class="link-more" href="/collections/best-sellers">Shop best sellers →</a>
|
|
171
|
+
</div>
|
|
172
|
+
<div class="pcarousel">
|
|
173
|
+
<article class="pcard">
|
|
174
|
+
<a href="/products/uno-mas-disposable-5-1-200-puffs">
|
|
175
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/uno-mas-disposable-5-1200-puffs-4823284.png?v=1777283848" alt="UNO Mas Disposable Vape 5% with 1,200 puffs, featuring sleek design and compact size for easy vaping on the go." loading="lazy"></div>
|
|
176
|
+
<p class="pcard__vendor">UNO</p>
|
|
177
|
+
<h3 class="pcard__title">Uno Mas Disposable 5% | 1,200 Puffs</h3>
|
|
178
|
+
<p class="pcard__price">$10.95</p>
|
|
179
|
+
</a>
|
|
180
|
+
</article>
|
|
181
|
+
<article class="pcard">
|
|
182
|
+
<a href="/products/foger-switch-pro-30k-replacement-pods">
|
|
183
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/foger-switch-pro-30k-replacement-pods-4304816.jpg?v=1772053231" alt="Foger Switch Pro 30K replacement pods for vape disposable device, showing clear pod with mouthpiece and refill port." loading="lazy"></div>
|
|
184
|
+
<p class="pcard__vendor">Foger</p>
|
|
185
|
+
<h3 class="pcard__title">Foger Switch Pro 30K Replacement Pods</h3>
|
|
186
|
+
<p class="pcard__price">$15.95</p>
|
|
187
|
+
</a>
|
|
188
|
+
</article>
|
|
189
|
+
<article class="pcard">
|
|
190
|
+
<a href="/products/uno-4k-4000-puff-disposable-vape">
|
|
191
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/uno-4k-4000-puff-disposable-vape-5441903.jpg?v=1777283789" alt="UNO 4K disposable vape with 4000 puffs, sleek design and compact size, perfect for vaping on the go." loading="lazy"></div>
|
|
192
|
+
<p class="pcard__vendor">UNO</p>
|
|
193
|
+
<h3 class="pcard__title">UNO 4K | 4000 Puff Disposable Vape</h3>
|
|
194
|
+
<p class="pcard__price">$15.95</p>
|
|
195
|
+
</a>
|
|
196
|
+
</article>
|
|
197
|
+
<article class="pcard">
|
|
198
|
+
<a href="/products/binaries-cabin-10-000-puff-by-horizon-tech-20ml-discontinued">
|
|
199
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/products/binaries-cabin-10000-puff-by-horizon-tech-20ml-discontinued-7595232.jpg?v=1777283785" alt="HorizonTech Binaries Cabin disposable vape in sleek design, offering 10,000 puffs and 20ml e-liquid capacity." loading="lazy"></div>
|
|
200
|
+
<p class="pcard__vendor">HorizonTech</p>
|
|
201
|
+
<h3 class="pcard__title">Binaries Cabin 10,000 Puff by Horizon Tech | 20ml</h3>
|
|
202
|
+
<p class="pcard__price">$5.00</p>
|
|
203
|
+
</a>
|
|
204
|
+
</article>
|
|
205
|
+
<article class="pcard">
|
|
206
|
+
<a href="/products/foger-switch-pro-30k-disposable-vape-kit">
|
|
207
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/foger-switch-pro-30k-disposable-vape-kit-7247938.jpg?v=1774300070" alt="Foger Switch Pro 30K disposable vape kit showing sleek design and mouthpiece, ideal for vaping on the go." loading="lazy"></div>
|
|
208
|
+
<p class="pcard__vendor">Foger</p>
|
|
209
|
+
<h3 class="pcard__title">Foger Switch Pro 30K Disposable Vape Kit</h3>
|
|
210
|
+
<p class="pcard__price">$16.95</p>
|
|
211
|
+
</a>
|
|
212
|
+
</article>
|
|
213
|
+
<article class="pcard">
|
|
214
|
+
<a href="/products/kk-energy-8000-puff-rechargeable-mesh-coil-disposable">
|
|
215
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/products/clearance-kk-energy-8000-non-refundable-puff-rechargeable-mesh-coil-disposable-8717655.jpg?v=1777283783" alt="KK Energy 8000 Puff rechargeable mesh coil disposable vape showing sleek design and refillable features." loading="lazy"></div>
|
|
216
|
+
<p class="pcard__vendor">KK Energy</p>
|
|
217
|
+
<h3 class="pcard__title">KK Energy 8000 Puff Rechargeable Mesh Coil Disposable</h3>
|
|
218
|
+
<p class="pcard__price">$5.00</p>
|
|
219
|
+
</a>
|
|
220
|
+
</article>
|
|
221
|
+
<article class="pcard">
|
|
222
|
+
<a href="/products/pi9000-9000-puff-5-eb-create">
|
|
223
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/clearance-non-refundable-pi9000-9000-puff-5-eb-create-4432137.png?v=1777283836" alt="EB Design PI9000 disposable vape with 9000 puffs and 5% nicotine, featuring sleek design and clear e-liquid indication." loading="lazy"></div>
|
|
224
|
+
<p class="pcard__vendor">EB Design</p>
|
|
225
|
+
<h3 class="pcard__title">PI9000 9000 PUFF | 5% EB CREATE</h3>
|
|
226
|
+
<p class="pcard__price">$5.00</p>
|
|
227
|
+
</a>
|
|
228
|
+
</article>
|
|
229
|
+
<article class="pcard">
|
|
230
|
+
<a href="/products/core-infinity-cr6000-disposable-6000-puff-discontinued">
|
|
231
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/products/core-infinity-cr6000-disposable-6000-puff-discontinued-9053731.png?v=1777283776" alt="Core Infinity CR6000 disposable vape by Core Labs with a sleek design, offering 6000 puffs for extended vaping enjoyment." loading="lazy"></div>
|
|
232
|
+
<p class="pcard__vendor">Core Labs</p>
|
|
233
|
+
<h3 class="pcard__title">Core Infinity CR6000 Disposable | 6000 Puff</h3>
|
|
234
|
+
<p class="pcard__price">$5.00</p>
|
|
235
|
+
</a>
|
|
236
|
+
</article>
|
|
237
|
+
<article class="pcard">
|
|
238
|
+
<a href="/products/digiflavor-sky-25k-puff-disposable-vape">
|
|
239
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/Digiflavor-Sky_Blackberry-Fcuking-Fab_600x600_303f9d65-d23f-4efc-8513-4f7746edbbb4.webp?v=1781288005" alt="Geek Bar DigiFlavor Sky 25K Puff disposable vape in black and blackberry flavor, compact vape device with sleek design." loading="lazy"></div>
|
|
240
|
+
<p class="pcard__vendor">Geek Bar</p>
|
|
241
|
+
<h3 class="pcard__title">DigiFlavor Sky 25K Puff Disposable Vape</h3>
|
|
242
|
+
<p class="pcard__price">$14.95</p>
|
|
243
|
+
</a>
|
|
244
|
+
</article>
|
|
245
|
+
<article class="pcard">
|
|
246
|
+
<a href="/products/funky-republic-ti7000-disposable-vape">
|
|
247
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/products/clearance-non-refundable-funky-republic-ti7000-disposable-vape-5352477.png?v=1777283775" alt="Funky Republic Ti7000 disposable vape with sleek design, handheld device, and colorful branding for easy vaping on the go." loading="lazy"></div>
|
|
248
|
+
<p class="pcard__vendor">Funky Republic</p>
|
|
249
|
+
<h3 class="pcard__title">Funky Republic Ti7000 Disposable Vape</h3>
|
|
250
|
+
<p class="pcard__price">$5.00</p>
|
|
251
|
+
</a>
|
|
252
|
+
</article>
|
|
253
|
+
<article class="pcard">
|
|
254
|
+
<a href="/products/clearance-non-refundable-lost-mary-os5000-by-ebdesign-disposable-5000-puff-rechargeable-5-disposable-vape">
|
|
255
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/products/clearance-non-refundable-lost-mary-os5000-by-ebdesign-disposable-5000-puff-rechargeable-5-disposable-vape-1101875.jpg?v=1777283782" alt="Lost Mary OS5000 disposable vape by EBDESIGN with 5000 puffs, rechargeable, non-refundable, 5% nicotine vape device." loading="lazy"></div>
|
|
256
|
+
<p class="pcard__vendor">Lost Mary</p>
|
|
257
|
+
<h3 class="pcard__title">CLEARANCE (Non-Refundable) Lost Mary OS5000 by EBDESIGN Disposable | 5000 Puff Rechargeable | 5% Disposable Vape</h3>
|
|
258
|
+
<p class="pcard__price">$4.95</p>
|
|
259
|
+
</a>
|
|
260
|
+
</article>
|
|
261
|
+
<article class="pcard">
|
|
262
|
+
<a href="/products/geek-bar-meloso-9000k-puff-disposable">
|
|
263
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/MexicoMango.jpg?v=1716998314" alt="Geek Bar Meloso 9000K Puff disposable vape with Mexico Mango flavor, showcasing the colorful mango-themed packaging." loading="lazy"></div>
|
|
264
|
+
<p class="pcard__vendor">Geek Bar</p>
|
|
265
|
+
<h3 class="pcard__title">Geek Bar Meloso 9000K Puff Disposable</h3>
|
|
266
|
+
<p class="pcard__price">$12.95</p>
|
|
267
|
+
</a>
|
|
268
|
+
</article>
|
|
269
|
+
</div>
|
|
270
|
+
</div>
|
|
271
|
+
</section>
|
|
272
|
+
|
|
273
|
+
<!-- SHELF: Texas-Compliant Disposables (12 products) -->
|
|
274
|
+
<section class="section shelf" aria-labelledby="shelf-texas-compliant-disposables">
|
|
275
|
+
<div class="container">
|
|
276
|
+
<div class="sec-head sec-head--between">
|
|
277
|
+
<div><span class="eyebrow">Shop</span><h2 id="shelf-texas-compliant-disposables">Texas-Compliant Disposables</h2></div>
|
|
278
|
+
<a class="link-more" href="/collections/texas-compliant-disposables">Shop Texas-compliant →</a>
|
|
279
|
+
</div>
|
|
280
|
+
<div class="pcarousel">
|
|
281
|
+
<article class="pcard">
|
|
282
|
+
<a href="/products/uno-mas-disposable-5-1-200-puffs">
|
|
283
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/uno-mas-disposable-5-1200-puffs-4823284.png?v=1777283848" alt="UNO Mas Disposable Vape 5% with 1,200 puffs, featuring sleek design and compact size for easy vaping on the go." loading="lazy"></div>
|
|
284
|
+
<p class="pcard__vendor">UNO</p>
|
|
285
|
+
<h3 class="pcard__title">Uno Mas Disposable 5% | 1,200 Puffs</h3>
|
|
286
|
+
<p class="pcard__price">$10.95</p>
|
|
287
|
+
</a>
|
|
288
|
+
</article>
|
|
289
|
+
<article class="pcard">
|
|
290
|
+
<a href="/products/foger-switch-pro-30k-replacement-pods">
|
|
291
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/foger-switch-pro-30k-replacement-pods-4304816.jpg?v=1772053231" alt="Foger Switch Pro 30K replacement pods for vape disposable device, showing clear pod with mouthpiece and refill port." loading="lazy"></div>
|
|
292
|
+
<p class="pcard__vendor">Foger</p>
|
|
293
|
+
<h3 class="pcard__title">Foger Switch Pro 30K Replacement Pods</h3>
|
|
294
|
+
<p class="pcard__price">$15.95</p>
|
|
295
|
+
</a>
|
|
296
|
+
</article>
|
|
297
|
+
<article class="pcard">
|
|
298
|
+
<a href="/products/uno-4k-4000-puff-disposable-vape">
|
|
299
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/uno-4k-4000-puff-disposable-vape-5441903.jpg?v=1777283789" alt="UNO 4K disposable vape with 4000 puffs, sleek design and compact size, perfect for vaping on the go." loading="lazy"></div>
|
|
300
|
+
<p class="pcard__vendor">UNO</p>
|
|
301
|
+
<h3 class="pcard__title">UNO 4K | 4000 Puff Disposable Vape</h3>
|
|
302
|
+
<p class="pcard__price">$15.95</p>
|
|
303
|
+
</a>
|
|
304
|
+
</article>
|
|
305
|
+
<article class="pcard">
|
|
306
|
+
<a href="/products/foger-switch-pro-30k-disposable-vape-kit">
|
|
307
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/foger-switch-pro-30k-disposable-vape-kit-7247938.jpg?v=1774300070" alt="Foger Switch Pro 30K disposable vape kit showing sleek design and mouthpiece, ideal for vaping on the go." loading="lazy"></div>
|
|
308
|
+
<p class="pcard__vendor">Foger</p>
|
|
309
|
+
<h3 class="pcard__title">Foger Switch Pro 30K Disposable Vape Kit</h3>
|
|
310
|
+
<p class="pcard__price">$16.95</p>
|
|
311
|
+
</a>
|
|
312
|
+
</article>
|
|
313
|
+
<article class="pcard">
|
|
314
|
+
<a href="/products/digiflavor-sky-25k-puff-disposable-vape">
|
|
315
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/Digiflavor-Sky_Blackberry-Fcuking-Fab_600x600_303f9d65-d23f-4efc-8513-4f7746edbbb4.webp?v=1781288005" alt="Geek Bar DigiFlavor Sky 25K Puff disposable vape in black and blackberry flavor, compact vape device with sleek design." loading="lazy"></div>
|
|
316
|
+
<p class="pcard__vendor">Geek Bar</p>
|
|
317
|
+
<h3 class="pcard__title">DigiFlavor Sky 25K Puff Disposable Vape</h3>
|
|
318
|
+
<p class="pcard__price">$14.95</p>
|
|
319
|
+
</a>
|
|
320
|
+
</article>
|
|
321
|
+
<article class="pcard">
|
|
322
|
+
<a href="/products/viho-trx-50k-disposable-vape-50-000-puff-copy">
|
|
323
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/viho-trx-50k-disposable-vape-50000-puff-3977378.png?v=1772053218" alt="VIHO TRX 50K disposable vape with sleek design, offering 50,000 puffs of flavorful vapor for salt nicotine e-cigarette users." loading="lazy"></div>
|
|
324
|
+
<p class="pcard__vendor">VIHO</p>
|
|
325
|
+
<h3 class="pcard__title">VIHO TRX 50K Disposable Vape | 50,000 Puff</h3>
|
|
326
|
+
<p class="pcard__price">$16.95</p>
|
|
327
|
+
</a>
|
|
328
|
+
</article>
|
|
329
|
+
<article class="pcard">
|
|
330
|
+
<a href="/products/one-tank-40k-disposable">
|
|
331
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/one-tank-40k-disposable-4833086.jpg?v=1772051512" alt="One Tank 40K disposable vape pen with sleek design and compact size, ideal for easy, on-the-go vaping." loading="lazy"></div>
|
|
332
|
+
<p class="pcard__vendor">One Tank</p>
|
|
333
|
+
<h3 class="pcard__title">One Tank 40K Disposable</h3>
|
|
334
|
+
<p class="pcard__price">$15.95</p>
|
|
335
|
+
</a>
|
|
336
|
+
</article>
|
|
337
|
+
<article class="pcard">
|
|
338
|
+
<a href="/products/ebcreate-bc-pro-2026-40k-disposable">
|
|
339
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/ebcreate-bc-pro-2026-40k-disposable-4382124.webp?v=1777279571" alt="EBCREATE BC PRO 2026 disposable vape device with sleek design and compact size for easy use and portability." loading="lazy"></div>
|
|
340
|
+
<p class="pcard__vendor">EBCREATE</p>
|
|
341
|
+
<h3 class="pcard__title">EBCREATE BC PRO 2026 | 40K Disposable</h3>
|
|
342
|
+
<p class="pcard__price">$17.95</p>
|
|
343
|
+
</a>
|
|
344
|
+
</article>
|
|
345
|
+
<article class="pcard">
|
|
346
|
+
<a href="/products/dinner-lady-galax-60k-disposable">
|
|
347
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/dinner-lady-galax-60k-disposable-2458281.jpg?v=1772051507" alt="Dinner Lady Galax 60K disposable vape device with colorful galaxy design and sleek cylindrical shape." loading="lazy"></div>
|
|
348
|
+
<p class="pcard__vendor">Dinner Lady</p>
|
|
349
|
+
<h3 class="pcard__title">Dinner Lady Galax 60K Disposable</h3>
|
|
350
|
+
<p class="pcard__price">$18.95</p>
|
|
351
|
+
</a>
|
|
352
|
+
</article>
|
|
353
|
+
<article class="pcard">
|
|
354
|
+
<a href="/products/dinner-lady-desserts-40k-disposable">
|
|
355
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/dinner-lady-desserts-40k-disposable-1725868.png?v=1774510094" alt="Dinner Lady Desserts 40K disposable vape device with colorful packaging, designed for flavor-rich vaping experience." loading="lazy"></div>
|
|
356
|
+
<p class="pcard__vendor">Dinner Lady</p>
|
|
357
|
+
<h3 class="pcard__title">Dinner Lady Desserts 40K Disposable</h3>
|
|
358
|
+
<p class="pcard__price">$19.95</p>
|
|
359
|
+
</a>
|
|
360
|
+
</article>
|
|
361
|
+
<article class="pcard">
|
|
362
|
+
<a href="/products/dojo-purex-60k-disposable-vape">
|
|
363
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/BULERAZZICE_1.png?v=1779472166" alt="DOJO Purex 60K disposable vape in black with sleek design, featuring a mouthpiece and LED indicator for vaping convenience" loading="lazy"></div>
|
|
364
|
+
<p class="pcard__vendor">DOJO</p>
|
|
365
|
+
<h3 class="pcard__title">DOJO Purex 60K Disposable Vape</h3>
|
|
366
|
+
<p class="pcard__price">$17.95</p>
|
|
367
|
+
</a>
|
|
368
|
+
</article>
|
|
369
|
+
<article class="pcard">
|
|
370
|
+
<a href="/products/geek-bar-pulse-15k-disposable-vape-copy">
|
|
371
|
+
<div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/BlackMintz.png?v=1772141017" alt="Geek Bar Pulse 15K disposable vape in black with mint flavor, featuring sleek design and compact handheld size." loading="lazy"></div>
|
|
372
|
+
<p class="pcard__vendor">Geek Bar</p>
|
|
373
|
+
<h3 class="pcard__title">Geek Bar Pulse 15K Disposable Vape</h3>
|
|
374
|
+
<p class="pcard__price">$15.95</p>
|
|
375
|
+
</a>
|
|
376
|
+
</article>
|
|
377
|
+
</div>
|
|
378
|
+
</div>
|
|
379
|
+
</section>
|
|
380
|
+
|
|
381
|
+
<!-- Staff's Pick -->
|
|
382
|
+
<section class="section section--surface" aria-labelledby="pick-h">
|
|
383
|
+
<div class="container">
|
|
384
|
+
<div class="sec-head"><span class="eyebrow">Featured</span><h2 id="pick-h">Staff's Pick</h2></div>
|
|
385
|
+
<a class="spotlight" href="/products/foger-switch-pro-30k-replacement-pods">
|
|
386
|
+
<div class="spotlight__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/foger-switch-pro-30k-replacement-pods-4304816.jpg?v=1772053231" alt="Foger Switch Pro 30K Replacement Pods" loading="lazy"></div>
|
|
387
|
+
<div class="spotlight__body">
|
|
388
|
+
<p class="pcard__vendor">Foger</p>
|
|
389
|
+
<h3>Foger Switch Pro 30K Replacement Pods</h3>
|
|
390
|
+
<p class="spotlight__price">$15.95</p>
|
|
391
|
+
<span class="btn btn-primary">Shop now</span>
|
|
392
|
+
</div>
|
|
393
|
+
</a>
|
|
394
|
+
</div>
|
|
395
|
+
</section>
|
|
396
|
+
|
|
397
|
+
<!-- Clearance -->
|
|
398
|
+
<section class="section shelf" aria-labelledby="shelf-clearance">
|
|
399
|
+
<div class="container">
|
|
400
|
+
<div class="sec-head sec-head--between"><div><span class="eyebrow">Deals</span><h2 id="shelf-clearance">Clearance</h2></div><a class="link-more" href="/collections/on-sale">Shop deals →</a></div>
|
|
401
|
+
<div class="pcarousel">
|
|
402
|
+
<article class="pcard"><a href="/products/kk-energy-8000-puff-rechargeable-mesh-coil-disposable"><div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/products/clearance-kk-energy-8000-non-refundable-puff-rechargeable-mesh-coil-disposable-8717655.jpg?v=1777283783" alt="KK Energy 8000 Puff Rechargeable Mesh Coil Disposable" loading="lazy"></div><p class="pcard__vendor">KK Energy</p><h3 class="pcard__title">KK Energy 8000 Puff Rechargeable Mesh Coil Disposable</h3><p class="pcard__price">$5.00</p></a></article>
|
|
403
|
+
<article class="pcard"><a href="/products/pi9000-9000-puff-5-eb-create"><div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/files/clearance-non-refundable-pi9000-9000-puff-5-eb-create-4432137.png?v=1777283836" alt="PI9000 9000 PUFF | 5% EB CREATE" loading="lazy"></div><p class="pcard__vendor">EB Design</p><h3 class="pcard__title">PI9000 9000 PUFF | 5% EB CREATE</h3><p class="pcard__price">$5.00</p></a></article>
|
|
404
|
+
<article class="pcard"><a href="/products/core-infinity-cr6000-disposable-6000-puff-discontinued"><div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/products/core-infinity-cr6000-disposable-6000-puff-discontinued-9053731.png?v=1777283776" alt="Core Infinity CR6000 Disposable | 6000 Puff" loading="lazy"></div><p class="pcard__vendor">Core Labs</p><h3 class="pcard__title">Core Infinity CR6000 Disposable | 6000 Puff</h3><p class="pcard__price">$5.00</p></a></article>
|
|
405
|
+
<article class="pcard"><a href="/products/funky-republic-ti7000-disposable-vape"><div class="pcard__media"><img src="https://cdn.shopify.com/s/files/1/0302/8477/products/clearance-non-refundable-funky-republic-ti7000-disposable-vape-5352477.png?v=1777283775" alt="Funky Republic Ti7000 Disposable Vape" loading="lazy"></div><p class="pcard__vendor">Funky Republic</p><h3 class="pcard__title">Funky Republic Ti7000 Disposable Vape</h3><p class="pcard__price">$5.00</p></a></article>
|
|
406
|
+
</div>
|
|
407
|
+
</div>
|
|
408
|
+
</section>
|
|
409
|
+
|
|
410
|
+
<!-- Shop by Brands -->
|
|
411
|
+
<section class="section" aria-labelledby="brands-h">
|
|
412
|
+
<div class="container">
|
|
413
|
+
<div class="sec-head"><span class="eyebrow">Find your fav</span><h2 id="brands-h">Shop by Brands</h2></div>
|
|
414
|
+
<div class="brandgrid">
|
|
415
|
+
<a class="brandtile" href="/collections/adjust-vape-disposable" aria-label="Adjust"><img src="/tenants/bigdvapor/img/brands/adjust-vape-disposable.png" alt="Adjust" loading="lazy"></a>
|
|
416
|
+
<a class="brandtile" href="/collections/again-vape-disposable" aria-label="Again"><img src="/tenants/bigdvapor/img/brands/again-vape-disposable.png" alt="Again" loading="lazy"></a>
|
|
417
|
+
<a class="brandtile" href="/collections/al-fakher-vape-disposable" aria-label="Al Fakher"><img src="/tenants/bigdvapor/img/brands/al-fakher-vape-disposable.png" alt="Al Fakher" loading="lazy"></a>
|
|
418
|
+
<a class="brandtile" href="/collections/arro-vape-disposable" aria-label="ARRO"><img src="/tenants/bigdvapor/img/brands/arro-vape-disposable.png" alt="ARRO" loading="lazy"></a>
|
|
419
|
+
<a class="brandtile" href="/collections/cookies-vape-disposable" aria-label="Cookies"><img src="/tenants/bigdvapor/img/brands/cookies-vape-disposable.png" alt="Cookies" loading="lazy"></a>
|
|
420
|
+
<a class="brandtile" href="/collections/core-vape-disposable" aria-label="Core"><img src="/tenants/bigdvapor/img/brands/core-vape-disposable.png" alt="Core" loading="lazy"></a>
|
|
421
|
+
<a class="brandtile" href="/collections/cyclone-vape-disposable" aria-label="Cyclone"><img src="/tenants/bigdvapor/img/brands/cyclone-vape-disposable.png" alt="Cyclone" loading="lazy"></a>
|
|
422
|
+
<a class="brandtile" href="/collections/dinner-lady-vape-disposable" aria-label="Dinner Lady"><img src="/tenants/bigdvapor/img/brands/dinner-lady-vape-disposable.png" alt="Dinner Lady" loading="lazy"></a>
|
|
423
|
+
<a class="brandtile" href="/collections/extre-bar-vape-disposable" aria-label="Extre Bar"><img src="/tenants/bigdvapor/img/brands/extre-bar-vape-disposable.png" alt="Extre Bar" loading="lazy"></a>
|
|
424
|
+
<a class="brandtile" href="/collections/fifty-bar-vape-disposable" aria-label="Fifty Bar"><img src="/tenants/bigdvapor/img/brands/fifty-bar-vape-disposable.jpg" alt="Fifty Bar" loading="lazy"></a>
|
|
425
|
+
<a class="brandtile" href="/collections/firerose-vape-disposable" aria-label="Firerose"><img src="/tenants/bigdvapor/img/brands/firerose-vape-disposable.jpg" alt="Firerose" loading="lazy"></a>
|
|
426
|
+
<a class="brandtile" href="/collections/flavor-beast-vape-disposable" aria-label="Flavor Beast"><img src="/tenants/bigdvapor/img/brands/flavor-beast-vape-disposable.jpg" alt="Flavor Beast" loading="lazy"></a>
|
|
427
|
+
<a class="brandtile" href="/collections/foger-vape-disposable" aria-label="Foger"><img src="/tenants/bigdvapor/img/brands/foger-vape-disposable.png" alt="Foger" loading="lazy"></a>
|
|
428
|
+
<a class="brandtile" href="/collections/kk-energy-vape-disposable" aria-label="KK Energy"><img src="/tenants/bigdvapor/img/brands/kk-energy-vape-disposable.png" alt="KK Energy" loading="lazy"></a>
|
|
429
|
+
<a class="brandtile" href="/collections/kumi-vape-disposable" aria-label="Kumi"><img src="/tenants/bigdvapor/img/brands/kumi-vape-disposable.png" alt="Kumi" loading="lazy"></a>
|
|
430
|
+
<a class="brandtile" href="/collections/lost-vape-dispoable" aria-label="Lost Vape"><img src="/tenants/bigdvapor/img/brands/lost-vape-dispoable.png" alt="Lost Vape" loading="lazy"></a>
|
|
431
|
+
<a class="brandtile" href="/collections/melo-labs-vape-disposable" aria-label="Melo Labs"><img src="/tenants/bigdvapor/img/brands/melo-labs-vape-disposable.png" alt="Melo Labs" loading="lazy"></a>
|
|
432
|
+
<a class="brandtile" href="/collections/mixo-vape-disposable" aria-label="Mixo"><img src="/tenants/bigdvapor/img/brands/mixo-vape-disposable.webp" alt="Mixo" loading="lazy"></a>
|
|
433
|
+
<a class="brandtile" href="/collections/one-tank-vape-disposable" aria-label="One Tank"><img src="/tenants/bigdvapor/img/brands/one-tank-vape-disposable.jpg" alt="One Tank" loading="lazy"></a>
|
|
434
|
+
<a class="brandtile" href="/collections/oxbar-vape-disposable" aria-label="Oxbar"><img src="/tenants/bigdvapor/img/brands/oxbar-vape-disposable.webp" alt="Oxbar" loading="lazy"></a>
|
|
435
|
+
<a class="brandtile" href="/collections/pillow-talk-vape-disposable" aria-label="Pillow Talk"><img src="/tenants/bigdvapor/img/brands/pillow-talk-vape-disposable.jpg" alt="Pillow Talk" loading="lazy"></a>
|
|
436
|
+
<a class="brandtile" href="/collections/pod-king-vape-disposable" aria-label="Pod King"><img src="/tenants/bigdvapor/img/brands/pod-king-vape-disposable.jpg" alt="Pod King" loading="lazy"></a>
|
|
437
|
+
<a class="brandtile" href="/collections/raz-vape-disposable" aria-label="RAZ"><img src="/tenants/bigdvapor/img/brands/raz-vape-disposable.png" alt="RAZ" loading="lazy"></a>
|
|
438
|
+
</div>
|
|
439
|
+
<p class="center" style="margin-top:1.5rem"><a class="btn btn-ghost" href="/collections/disposables">View all brands</a></p>
|
|
440
|
+
</div>
|
|
441
|
+
</section>
|
|
442
|
+
|
|
443
|
+
<!-- Every Taste Tells a Story -->
|
|
444
|
+
<section class="section section--surface intro" aria-labelledby="story-h">
|
|
445
|
+
<div class="container">
|
|
446
|
+
<span class="eyebrow">Big D Vapor</span>
|
|
447
|
+
<h2 id="story-h">Every Taste Tells a Story</h2>
|
|
448
|
+
<p>From bold disposables to smooth salt-nic e-liquids, Big D Vapor stocks the flavors and devices adult vapers reach for — authentic products, below-market pricing, and fast, free US shipping on orders over $100.</p>
|
|
449
|
+
</div>
|
|
450
|
+
</section>
|
|
451
|
+
|
|
452
|
+
<!-- Blog -->
|
|
453
|
+
<section class="section" aria-labelledby="blog-h">
|
|
454
|
+
<div class="container">
|
|
455
|
+
<div class="sec-head sec-head--between"><div><span class="eyebrow">News</span><h2 id="blog-h">From the Blog</h2></div><a class="link-more" href="/blogs/news">Read the blog →</a></div>
|
|
456
|
+
<div class="bloggrid">
|
|
457
|
+
<a class="blogcard" href="/blogs/news/the-big-d-weekly-june-30-2026-new-vapes-texas-sb-2024-update-more"><div class="blogcard__media"></div><h3>The Big D Weekly | June 29, 2026 – New Vapes, Texas SB 2024 Update & More</h3><span class="link-more">Read more →</span></a>
|
|
458
|
+
<a class="blogcard" href="/blogs/news/the-big-d-weekly-june-23-2026-new-vapes-texas-sb-2024-update-more"><div class="blogcard__media"></div><h3>The Big D Weekly | June 23, 2026 – New Vapes, Texas SB 2024 Update & More</h3><span class="link-more">Read more →</span></a>
|
|
459
|
+
<a class="blogcard" href="/blogs/news/coastal-clouds-e-liquid-flavor-profiles-nicotine-options-and-best-picks-at-big-d-vapor"><div class="blogcard__media"></div><h3>Coastal Clouds E-Liquid: Discover the Best Flavors at Big D Vapor</h3><span class="link-more">Read more →</span></a>
|
|
460
|
+
</div>
|
|
461
|
+
</div>
|
|
462
|
+
</section>
|
|
463
|
+
</main>
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"seoTitle": "Big D Vapor",
|
|
3
|
+
"seoDescription": "Discover a wide selection of high-quality vape products and e-liquids at Big D Vapor. Browse our collection and elevate your vaping experience today.",
|
|
4
|
+
"blocks": [
|
|
5
|
+
{
|
|
6
|
+
"component": "hero",
|
|
7
|
+
"headline": "Big D Vapor",
|
|
8
|
+
"subhead": "Discover a wide selection of high-quality vape products and e-liquids at Big D Vapor. Browse our collection and elevate your vaping experience today.",
|
|
9
|
+
"image": "https://www.bigdvapor.com/cdn/shop/files/Hero-Banner-Texas-min.jpg?v=1764066019&width=1280",
|
|
10
|
+
"imageAlt": "texas compliant disposables",
|
|
11
|
+
"ctaLabel": "Shop New Products",
|
|
12
|
+
"ctaHref": "/collections/new-products"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"component": "promo_tiles",
|
|
16
|
+
"tiles": [
|
|
17
|
+
{
|
|
18
|
+
"label": "All Disposables",
|
|
19
|
+
"href": "/collections/disposables",
|
|
20
|
+
"image": "https://www.bigdvapor.com/cdn/shop/collections/Disposables_d2138cdf-3a66-4a64-af6d-2998b6f679a3_200x.svg?v=1765344748"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"label": "Adjust",
|
|
24
|
+
"href": "/collections/adjust-vape-disposable",
|
|
25
|
+
"image": "https://www.bigdvapor.com/cdn/shop/collections/adjust-vape-disposable-2967738_200x.png?v=1772051385"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"label": "Again",
|
|
29
|
+
"href": "/collections/again-vape-disposable",
|
|
30
|
+
"image": "https://www.bigdvapor.com/cdn/shop/collections/again-vape-disposable-8267244_200x.png?v=1772051661"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"label": "Al Fakher",
|
|
34
|
+
"href": "/collections/al-fakher-vape-disposable",
|
|
35
|
+
"image": "https://www.bigdvapor.com/cdn/shop/collections/al-fakher-vape-disposable-7899089_200x.png?v=1772051386"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"label": "ARRO",
|
|
39
|
+
"href": "/collections/arro-vape-disposable",
|
|
40
|
+
"image": "https://www.bigdvapor.com/cdn/shop/collections/arro-vape-disposable-1808635_200x.png?v=1772051390"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"label": "Cookies",
|
|
44
|
+
"href": "/collections/cookies-vape-disposable",
|
|
45
|
+
"image": "https://www.bigdvapor.com/cdn/shop/collections/cookies-vape-disposable-8193943_200x.png?v=1772051416"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"label": "Core",
|
|
49
|
+
"href": "/collections/core-vape-disposable",
|
|
50
|
+
"image": "https://www.bigdvapor.com/cdn/shop/collections/core-vape-disposable-1565670_200x.png?v=1772051419"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"label": "Cyclone",
|
|
54
|
+
"href": "/collections/cyclone-vape-disposable",
|
|
55
|
+
"image": "https://www.bigdvapor.com/cdn/shop/collections/cyclone-vape-disposable-6178675_200x.png?v=1772051428"
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"component": "featured_collections",
|
|
61
|
+
"handles": [
|
|
62
|
+
"best-sellers",
|
|
63
|
+
"devices",
|
|
64
|
+
"new-products"
|
|
65
|
+
]
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"component": "featured_products",
|
|
69
|
+
"source": "featured",
|
|
70
|
+
"limit": 8
|
|
71
|
+
}
|
|
72
|
+
]
|
|
73
|
+
}
|