@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,194 @@
|
|
|
1
|
+
<head>
|
|
2
|
+
<title>Giant Vapes | Vape Shop Online - E-Cigs, E-Liquids, Mods, CBD and More</title>
|
|
3
|
+
<meta name="description" content="Looking to shop for vapes online? Look no further than Giant Vapes! We carry all the latest e-cigs, e-liquid, mods and more to help you enjoy your vaping experience to the fullest. Shop now!">
|
|
4
|
+
<link rel="canonical" href="https://giantvapes.com/">
|
|
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="Giant Vapes">
|
|
8
|
+
<meta property="og:title" content="Giant Vapes | Vape Shop Online">
|
|
9
|
+
<meta property="og:description" content="We carry all the latest e-cigs, e-liquid, mods and more to help you enjoy your vaping experience to the fullest. 21+ only.">
|
|
10
|
+
<meta property="og:url" content="https://giantvapes.com/">
|
|
11
|
+
<meta property="og:image" content="/tenants/giantvapes/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://giantvapes.com/#org", "name": "Giant Vapes", "url": "https://giantvapes.com/", "logo": "https://giantvapes.com/tenants/giantvapes/logo-wordmark.png", "description": "Giant Vapes is an online vape shop offering premium e-liquids, nicotine salts, disposables, and vaping hardware. In business since 2013." },
|
|
18
|
+
{ "@type": "WebSite", "@id": "https://giantvapes.com/#website", "url": "https://giantvapes.com/", "name": "Giant Vapes", "publisher": { "@id": "https://giantvapes.com/#org" }, "potentialAction": { "@type": "SearchAction", "target": "https://giantvapes.com/search?q={search_term_string}", "query-input": "required name=search_term_string" } }
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
</script>
|
|
22
|
+
<link rel="stylesheet" href="/tenants/giantvapes/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/suicide-bunny-eliquids"><img src="/tenants/giantvapes/img/hero-suicide-bunny.jpg" alt="New Suicide Bunny e-liquid flavors at Giant Vapes" width="1200" height="575" fetchpriority="high"></a>
|
|
30
|
+
<a class="promo-tile" href="/collections/new-arrivals" aria-label="New arrivals just landed"></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-arrivals"><h3>New Arrivals</h3><p>Fresh juice & hardware just in</p><span class="link">Shop New Arrivals</span></a>
|
|
38
|
+
<a class="promo-card promo-card--red" href="/collections/clearance"><h3>Clearance</h3><p>Deals while they last</p><span class="link">Shop Clearance</span></a>
|
|
39
|
+
<a class="promo-card promo-card--blue" href="/collections/all-disposables" style="background:linear-gradient(160deg,#1b3b64,#2f5a8f)"><h3>Disposables</h3><p>Big puff counts, big flavor</p><span class="link">Shop Disposables</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/all"><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-Liquid</span></a>
|
|
49
|
+
<a class="cat-icon-card" href="/collections/salt-nic"><span class="ico"><svg viewBox="0 0 48 48"><path d="M20 8h8v5l3 5v17a4 4 0 0 1-4 4h-6a4 4 0 0 1-4-4V18l3-5z"/><path d="M23 28h2"/></svg></span><span>Salt Nic</span></a>
|
|
50
|
+
<a class="cat-icon-card" href="/collections/all-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>
|
|
51
|
+
<a class="cat-icon-card" href="/collections/vaporesso"><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>Hardware</span></a>
|
|
52
|
+
<a class="cat-icon-card" href="/collections/clearance"><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>Clearance</span></a>
|
|
53
|
+
</div>
|
|
54
|
+
</div>
|
|
55
|
+
</section>
|
|
56
|
+
|
|
57
|
+
<!-- SHELF: Shop Suicide Bunny -->
|
|
58
|
+
<section class="section shelf" aria-labelledby="shelf-suicide-bunny">
|
|
59
|
+
<div class="container">
|
|
60
|
+
<div class="sec-head sec-head--between">
|
|
61
|
+
<div><span class="eyebrow">Shop</span><h2 id="shelf-suicide-bunny">Suicide Bunny</h2></div>
|
|
62
|
+
<a class="link-more" href="/collections/suicide-bunny-eliquids">View all →</a>
|
|
63
|
+
</div>
|
|
64
|
+
<div class="pcarousel">
|
|
65
|
+
<article class="pcard"><a href="/products/mothers-milk"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/Suicide-Bunny-120ml-Mothers-Milk-Mock-Up-3mg_533x.png?v=1716523464" alt="Mother's Milk - Suicide Bunny - 120mL" loading="lazy"></div><p class="pcard__vendor">Suicide Bunny</p><h3 class="pcard__title">Mother's Milk — 120mL</h3><p class="pcard__price">$14.99 <span class="pcard__was">$19.99</span></p></a></article>
|
|
66
|
+
<article class="pcard"><a href="/products/sucker-punch"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/Suicide-Bunny-120ml-Sucker-Punch-Mock-Up-3mg_533x.png?v=1716477012" alt="Sucker Punch - Suicide Bunny - 120mL" loading="lazy"></div><p class="pcard__vendor">Suicide Bunny</p><h3 class="pcard__title">Sucker Punch — 120mL</h3><p class="pcard__price">$14.99 <span class="pcard__was">$19.99</span></p></a></article>
|
|
67
|
+
<article class="pcard"><a href="/products/mothers-milk-cookies"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/Suicide-Bunny-120ml-Mothers-Milk-N-Cookies-Mock-Up-3mg_533x.png?v=1716523559" alt="Mother's Milk & Cookies - Suicide Bunny - 120mL" loading="lazy"></div><p class="pcard__vendor">Suicide Bunny</p><h3 class="pcard__title">Mother's Milk & Cookies — 120mL</h3><p class="pcard__price">$14.99 <span class="pcard__was">$19.99</span></p></a></article>
|
|
68
|
+
<article class="pcard"><a href="/products/derailed"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/Suicide-Bunny-120ml-Derailed-Mock-Up-3mg_533x.png?v=1716564504" alt="Derailed - Suicide Bunny - 120mL" loading="lazy"></div><p class="pcard__vendor">Suicide Bunny</p><h3 class="pcard__title">Derailed — 120mL</h3><p class="pcard__price">$14.99 <span class="pcard__was">$19.99</span></p></a></article>
|
|
69
|
+
</div>
|
|
70
|
+
</div>
|
|
71
|
+
</section>
|
|
72
|
+
|
|
73
|
+
<!-- SHELF: Shop Sicboy -->
|
|
74
|
+
<section class="section shelf" aria-labelledby="shelf-sicboy">
|
|
75
|
+
<div class="container">
|
|
76
|
+
<div class="sec-head sec-head--between">
|
|
77
|
+
<div><span class="eyebrow">Shop</span><h2 id="shelf-sicboy">Sicboy</h2></div>
|
|
78
|
+
<a class="link-more" href="/collections/sicboy-industries-premium-eliquid">View all →</a>
|
|
79
|
+
</div>
|
|
80
|
+
<div class="pcarousel">
|
|
81
|
+
<article class="pcard"><a href="/products/m-b-y-c"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/SICBOY_MBYC_100_TRANS_533x.png?v=1716528491" alt="M. B. Y. C. - Sicboy - 100mL" loading="lazy"></div><p class="pcard__vendor">Sicboy</p><h3 class="pcard__title">M. B. Y. C. — 100mL</h3><p class="pcard__price">$19.99 <span class="pcard__was">$24.99</span></p></a></article>
|
|
82
|
+
<article class="pcard"><a href="/products/m-b-y-c-fried"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/SICBOY_MBYC_FRIED_100_TRANS_533x.png?v=1716528486" alt="M. B. Y. C. Fried - Sicboy - 100mL" loading="lazy"></div><p class="pcard__vendor">Sicboy</p><h3 class="pcard__title">M. B. Y. C. Fried — 100mL</h3><p class="pcard__price">$19.99 <span class="pcard__was">$24.99</span></p></a></article>
|
|
83
|
+
<article class="pcard"><a href="/products/deviant-sicboy-100ml"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/SICBOY_DEVIANT_CHERRY_STRUDAL_100_TRANS_533x.png?v=1716564474" alt="Deviant - Sicboy - 100mL" loading="lazy"></div><p class="pcard__vendor">Sicboy</p><h3 class="pcard__title">Deviant — 100mL</h3><p class="pcard__price">$19.99 <span class="pcard__was">$24.99</span></p></a></article>
|
|
84
|
+
<article class="pcard"><a href="/products/rated-s-for-sic"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/SICBOY_RATEDS_100_TRANS_533x.png?v=1716525503" alt="Rated S for Sic - Sicboy - 100mL" loading="lazy"></div><p class="pcard__vendor">Sicboy</p><h3 class="pcard__title">Rated S for Sic — 100mL</h3><p class="pcard__price">$19.99 <span class="pcard__was">$24.99</span></p></a></article>
|
|
85
|
+
</div>
|
|
86
|
+
</div>
|
|
87
|
+
</section>
|
|
88
|
+
|
|
89
|
+
<!-- SHELF: Shop Jimmy The Juice Man -->
|
|
90
|
+
<section class="section shelf" aria-labelledby="shelf-jimmy">
|
|
91
|
+
<div class="container">
|
|
92
|
+
<div class="sec-head sec-head--between">
|
|
93
|
+
<div><span class="eyebrow">Shop</span><h2 id="shelf-jimmy">Jimmy The Juice Man</h2></div>
|
|
94
|
+
<a class="link-more" href="/collections/jimmy-the-juice-man">View all →</a>
|
|
95
|
+
</div>
|
|
96
|
+
<div class="pcarousel">
|
|
97
|
+
<article class="pcard"><a href="/products/shurb"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/0002s_0006_Shurb_3mg_533x.png?v=1766016208" alt="Jimmy the Juice Man - Shurb e-liquid bottle 120ml" loading="lazy"></div><p class="pcard__vendor">Jimmy The Juice Man</p><h3 class="pcard__title">Shurb — 120mL</h3><p class="pcard__price">$13.99 <span class="pcard__was">$19.99</span></p></a></article>
|
|
98
|
+
<article class="pcard"><a href="/products/creme-brulee"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/0002s_0002_Creme_Brulee_3mg_533x.png?v=1766016209" alt="Jimmy the Juice Man - Crème Brûlée e-liquid 120ml bottle" loading="lazy"></div><p class="pcard__vendor">Jimmy The Juice Man</p><h3 class="pcard__title">Creme Brulee — 120mL</h3><p class="pcard__price">$13.99 <span class="pcard__was">$19.99</span></p></a></article>
|
|
99
|
+
<article class="pcard"><a href="/products/peachy-strawberry"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/0002s_0014_Peachy_Strawberry_3mg_533x.png?v=1766016207" alt="Jimmy the Juice Man - Peachy Strawberry ejuice 120ml bottle" loading="lazy"></div><p class="pcard__vendor">Jimmy The Juice Man</p><h3 class="pcard__title">Peachy Strawberry — 120mL</h3><p class="pcard__price">$13.99 <span class="pcard__was">$19.99</span></p></a></article>
|
|
100
|
+
<article class="pcard"><a href="/products/raspberry-french"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/0002s_0018_Raspberry_French_3mg_533x.png?v=1766016208" alt="Jimmy the Juice Man - Raspberry French e-liquid bottle" loading="lazy"></div><p class="pcard__vendor">Jimmy The Juice Man</p><h3 class="pcard__title">Raspberry French — 120mL</h3><p class="pcard__price">$13.99 <span class="pcard__was">$19.99</span></p></a></article>
|
|
101
|
+
</div>
|
|
102
|
+
</div>
|
|
103
|
+
</section>
|
|
104
|
+
|
|
105
|
+
<!-- SHELF: Shop Five Pawns -->
|
|
106
|
+
<section class="section shelf" aria-labelledby="shelf-five-pawns">
|
|
107
|
+
<div class="container">
|
|
108
|
+
<div class="sec-head sec-head--between">
|
|
109
|
+
<div><span class="eyebrow">Shop</span><h2 id="shelf-five-pawns">Five Pawns</h2></div>
|
|
110
|
+
<a class="link-more" href="/collections/five-pawns-1">View all →</a>
|
|
111
|
+
</div>
|
|
112
|
+
<div class="pcarousel">
|
|
113
|
+
<article class="pcard"><a href="/products/castle-long-five-pawns-60ml"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/Website-Thumbnails-with-Ingredients-Castle-Long_533x.jpg?v=1716566887" alt="Castle Long - Five Pawns - 60ml" loading="lazy"></div><p class="pcard__vendor">Five Pawns</p><h3 class="pcard__title">Castle Long — 60mL</h3><p class="pcard__price">$18.99 <span class="pcard__was">$25.99</span></p></a></article>
|
|
114
|
+
<article class="pcard"><a href="/products/grandmaster-five-pawns-60ml"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/Website-Thumbnails-with-Ingredients-Grandmaster_533x.jpg?v=1716540249" alt="Grandmaster - Five Pawns - 60ml" loading="lazy"></div><p class="pcard__vendor">Five Pawns</p><h3 class="pcard__title">Grandmaster — 60mL</h3><p class="pcard__price">$18.99 <span class="pcard__was">$25.99</span></p></a></article>
|
|
115
|
+
<article class="pcard"><a href="/products/gambit-five-pawns-60ml"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/Website-Thumbnails-with-Ingredients-Gambit_533x.jpg?v=1716555376" alt="Gambit - Five Pawns - 60ml" loading="lazy"></div><p class="pcard__vendor">Five Pawns</p><h3 class="pcard__title">Gambit — 60mL</h3><p class="pcard__price">$18.99 <span class="pcard__was">$25.99</span></p></a></article>
|
|
116
|
+
<article class="pcard"><a href="/products/black-flag-risen-five-pawns-60ml"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/Website-Thumbnails-with-Ingredients-BFR_533x.jpg?v=1716572871" alt="Black Flag Risen - Five Pawns - 60ml" loading="lazy"></div><p class="pcard__vendor">Five Pawns</p><h3 class="pcard__title">Black Flag Risen — 60mL</h3><p class="pcard__price">$18.99 <span class="pcard__was">$25.99</span></p></a></article>
|
|
117
|
+
</div>
|
|
118
|
+
</div>
|
|
119
|
+
</section>
|
|
120
|
+
|
|
121
|
+
<!-- Featured Hardware — Vaporesso -->
|
|
122
|
+
<section class="section section--surface" aria-labelledby="feat-hw-h">
|
|
123
|
+
<div class="container">
|
|
124
|
+
<div class="sec-head"><span class="eyebrow">Featured Hardware</span><h2 id="feat-hw-h">Vaporesso</h2></div>
|
|
125
|
+
<a class="spotlight" href="/collections/vaporesso">
|
|
126
|
+
<div class="spotlight__media"><img src="/tenants/giantvapes/img/hero.webp" alt="Vaporesso pod systems and kits at Giant Vapes" loading="lazy"></div>
|
|
127
|
+
<div class="spotlight__body">
|
|
128
|
+
<p class="pcard__vendor">Vaporesso</p>
|
|
129
|
+
<h3>Innovation in every draw</h3>
|
|
130
|
+
<p>Founded in 2015, Vaporesso was built on the belief that every innovation is a step toward excellence. Their cutting-edge devices combine advanced technology with sleek design, offering a cleaner, more enjoyable, high-performance vaping experience.</p>
|
|
131
|
+
<span class="btn btn-primary">Shop Vaporesso</span>
|
|
132
|
+
</div>
|
|
133
|
+
</a>
|
|
134
|
+
</div>
|
|
135
|
+
</section>
|
|
136
|
+
|
|
137
|
+
<!-- SHELF: Shop Vaporesso -->
|
|
138
|
+
<section class="section shelf" aria-labelledby="shelf-vaporesso">
|
|
139
|
+
<div class="container">
|
|
140
|
+
<div class="sec-head sec-head--between">
|
|
141
|
+
<div><span class="eyebrow">Shop</span><h2 id="shelf-vaporesso">Vaporesso Pods & Kits</h2></div>
|
|
142
|
+
<a class="link-more" href="/collections/vaporesso">View all →</a>
|
|
143
|
+
</div>
|
|
144
|
+
<div class="pcarousel">
|
|
145
|
+
<article class="pcard"><a href="/products/vaporesso-xros-6-mini-30w-pod-system"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/XROS_6_MINI-Plume_Blue_533x.webp?v=1782007950" alt="Vaporesso XROS 6 Mini 30W Pod System" loading="lazy"></div><p class="pcard__vendor">Vaporesso</p><h3 class="pcard__title">XROS 6 Mini 30W Pod System</h3><p class="pcard__price">$19.99 <span class="pcard__was">$23.90</span></p></a></article>
|
|
146
|
+
<article class="pcard"><a href="/products/vaporesso-luxe-x3-45w-pod-kit"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/LUXE_X3-carbon_black_533x.webp?v=1773702916" alt="Vaporesso LUXE X3 45W Pod Kit" loading="lazy"></div><p class="pcard__vendor">Vaporesso</p><h3 class="pcard__title">LUXE X3 45W Pod Kit</h3><p class="pcard__price">$27.99 <span class="pcard__was">$37.90</span></p></a></article>
|
|
147
|
+
<article class="pcard"><a href="/products/vaporesso-eco-nano-plus-pod-system"><div class="pcard__media"><img src="https://giantvapes.com/cdn/shop/files/ECONANOPLUS-CoralPink_533x.webp?v=1770416294" alt="Vaporesso ECO Nano PLUS Pod System" loading="lazy"></div><p class="pcard__vendor">Vaporesso</p><h3 class="pcard__title">ECO Nano PLUS Pod System</h3><p class="pcard__price">$17.99 <span class="pcard__was">$24.99</span></p></a></article>
|
|
148
|
+
</div>
|
|
149
|
+
</div>
|
|
150
|
+
</section>
|
|
151
|
+
|
|
152
|
+
<!-- Shop by Brands -->
|
|
153
|
+
<section class="section" aria-labelledby="brands-h">
|
|
154
|
+
<div class="container">
|
|
155
|
+
<div class="sec-head"><span class="eyebrow">Find your fav</span><h2 id="brands-h">Our Brands</h2></div>
|
|
156
|
+
<div class="brandgrid">
|
|
157
|
+
<a class="brandtile" href="/collections/suicide-bunny-eliquids"><span class="brandtile--text">Suicide Bunny</span></a>
|
|
158
|
+
<a class="brandtile" href="/collections/five-pawns-1"><span class="brandtile--text">Five Pawns</span></a>
|
|
159
|
+
<a class="brandtile" href="/collections/coastal-clouds"><span class="brandtile--text">Coastal Clouds</span></a>
|
|
160
|
+
<a class="brandtile" href="/collections/twist-e-liquids"><span class="brandtile--text">Twist E-Liquids</span></a>
|
|
161
|
+
<a class="brandtile" href="/collections/sicboy-industries-premium-eliquid"><span class="brandtile--text">Sicboy</span></a>
|
|
162
|
+
<a class="brandtile" href="/collections/oxva"><span class="brandtile--text">OXVA</span></a>
|
|
163
|
+
<a class="brandtile" href="/collections/cloud-nurdz"><span class="brandtile--text">Cloud Nurdz</span></a>
|
|
164
|
+
<a class="brandtile" href="/collections/geekvape"><span class="brandtile--text">GeekVape</span></a>
|
|
165
|
+
<a class="brandtile" href="/collections/jimmy-the-juice-man"><span class="brandtile--text">Jimmy The Juice Man</span></a>
|
|
166
|
+
<a class="brandtile" href="/collections/cold-fusion"><span class="brandtile--text">Cold Fusion</span></a>
|
|
167
|
+
<a class="brandtile" href="/collections/smoktech"><span class="brandtile--text">SMOKTech</span></a>
|
|
168
|
+
<a class="brandtile" href="/collections/vaporesso"><span class="brandtile--text">Vaporesso</span></a>
|
|
169
|
+
</div>
|
|
170
|
+
<p class="center" style="margin-top:1.5rem"><a class="btn btn-ghost" href="/collections/all">View all brands</a></p>
|
|
171
|
+
</div>
|
|
172
|
+
</section>
|
|
173
|
+
|
|
174
|
+
<!-- Ecigs and Vapes Online — story / SEO -->
|
|
175
|
+
<section class="section section--surface intro" aria-labelledby="story-h">
|
|
176
|
+
<div class="container">
|
|
177
|
+
<span class="eyebrow">Giant Vapes</span>
|
|
178
|
+
<h2 id="story-h">Ecigs and Vapes Online</h2>
|
|
179
|
+
<p>Looking for a vape shop online? Giant Vapes is the best place to buy vape mods, vape juice, and vaping accessories online. We feature a huge selection of vape mods, vape juice, and vaping accessories at the best prices on the internet, and we are always adding new products. We've been an online vape shop since 2013, and our goal is to provide our customers with the best customer service possible.</p>
|
|
180
|
+
</div>
|
|
181
|
+
</section>
|
|
182
|
+
|
|
183
|
+
<!-- Blog -->
|
|
184
|
+
<section class="section" aria-labelledby="blog-h">
|
|
185
|
+
<div class="container">
|
|
186
|
+
<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>
|
|
187
|
+
<div class="bloggrid">
|
|
188
|
+
<a class="blogcard" href="/blogs/news/pod-system-vs-box-mod-pros-cons"><div class="blogcard__media"></div><h3>Pod System vs Box Mod: Pros & Cons</h3><span class="link-more">Read more →</span></a>
|
|
189
|
+
<a class="blogcard" href="/blogs/news/which-vape-device-is-best-for-heavy-smokers"><div class="blogcard__media"></div><h3>Which Vape Device Is Best for Heavy Smokers?</h3><span class="link-more">Read more →</span></a>
|
|
190
|
+
<a class="blogcard" href="/blogs/news/top-dessert-flavors-vapers-can-t-get-enough-of-in-2026"><div class="blogcard__media"></div><h3>Top Dessert Flavors Vapers Can't Get Enough Of in 2026</h3><span class="link-more">Read more →</span></a>
|
|
191
|
+
</div>
|
|
192
|
+
</div>
|
|
193
|
+
</section>
|
|
194
|
+
</main>
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"seoTitle": "Giant Vapes — E-Liquid, Salts & Disposables",
|
|
3
|
+
"seoDescription": "Premium fruity e-liquids, nicotine salts, and disposables. Big flavor, fast shipping, 21+ only.",
|
|
4
|
+
"blocks": [
|
|
5
|
+
{
|
|
6
|
+
"component": "hero",
|
|
7
|
+
"eyebrow": "E-liquid · salts · disposables",
|
|
8
|
+
"headline": "Big flavor,",
|
|
9
|
+
"headlineAccent": "no nonsense.",
|
|
10
|
+
"subhead": "Hundreds of juices, salts, and disposables in stock and shipping fast. Browse by flavor, strength, and format. 21+ only.",
|
|
11
|
+
"ctaLabel": "Shop e-liquids",
|
|
12
|
+
"ctaHref": "/collections/fruity-e-liquids",
|
|
13
|
+
"featureCollection": "fruity-e-liquids"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"component": "featured_collections",
|
|
17
|
+
"title": "Start here",
|
|
18
|
+
"handles": ["fruity-e-liquids", "nicotine-salts", "all-disposables"]
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"component": "featured_products",
|
|
22
|
+
"title": "Crowd favorites",
|
|
23
|
+
"source": "featured",
|
|
24
|
+
"limit": 4
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"component": "editorial",
|
|
28
|
+
"eyebrow": "Why Giant Vapes",
|
|
29
|
+
"title": "Real stock, real fast",
|
|
30
|
+
"body_html": "<p>We carry the brands you actually want and keep them on the shelf — so the flavor you ordered last month is the flavor that ships today. Every order goes out with adult-signature delivery.</p><p>Filter by nicotine strength and bottle size to find your exact setup in seconds.</p>",
|
|
31
|
+
"imageSeed": "giantvapes-make",
|
|
32
|
+
"align": "right",
|
|
33
|
+
"ctaLabel": "About us",
|
|
34
|
+
"ctaHref": "/about"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"component": "featured_products",
|
|
38
|
+
"title": "Just landed",
|
|
39
|
+
"source": "newest",
|
|
40
|
+
"limit": 4
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"component": "newsletter",
|
|
44
|
+
"title": "New drops & restock alerts",
|
|
45
|
+
"body": "Get a heads-up when your flavor comes back in stock and when new juice lands.",
|
|
46
|
+
"placeholder": "you@example.com",
|
|
47
|
+
"ctaLabel": "Keep me posted"
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "about",
|
|
3
|
+
"title": "About Giant Vapes",
|
|
4
|
+
"seoTitle": "About Us | Vape Juice Online | Giant Vapes",
|
|
5
|
+
"seoDescription": "Giant Vapes was founded in September of 2013 with a single goal: to make the best e-liquids on the market available in one user-friendly, unified place, saving vapers time and money.",
|
|
6
|
+
"eyebrow": "Since 2013",
|
|
7
|
+
"intro": "Giant Vapes is a company founded by vapers, for vapers.",
|
|
8
|
+
"isPolicy": false,
|
|
9
|
+
"body_html": "<p>Giant Vapes was founded in September of 2013 with a single goal: to make the best e-liquids on the market available in one user-friendly, unified place, saving vapers time and money. As the vape industry has grown, so have we, expanding our selection of products, our involvement in the vape community, and our staff to meet the growing needs of our customers.</p><p>Giant Vapes is a company founded by vapers, for vapers. We built this business with the best interests of the vaping community in mind, and we will continue to dedicate ourselves to providing premium products at great prices and exemplary service to vapers around the world.</p><h2>We are passionate about vaping</h2><p>Giant Vapes is a company founded by and staffed by vapers. Every line we bring in is carefully curated. The products we make available to our customers use premium ingredients, are properly and carefully manufactured, and come from vendors who share our concern for the future of this industry. We carry e-liquid and hardware that we believe in, and that we use every day.</p><h2>We are obsessed with fulfillment</h2><p>That's right, we spend most of our time and manpower on getting your orders shipped quickly and correctly. We don't mind bragging about our staff - our shipping team is the best in the business, and they're constantly innovating and improving to make sure your orders get out lightning-fast.</p><h2>We are dedicated to customer service</h2><p>Our fulfillment team makes sure your orders go out quickly and correctly, and our customer service team is here, just in case there's a problem with your shipment. And, of course, they love to answer questions and make recommendations - our service staff is proud to be there when you need them.</p><h2>We are committed to advocacy</h2><p>We work with state and national advocacy groups around the country to educate legislators and consumers, lobby for fair regulations, and secure the future of vaping.</p>"
|
|
10
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "privacy",
|
|
3
|
+
"title": "Privacy Policy",
|
|
4
|
+
"isPolicy": true,
|
|
5
|
+
"body_html": "<p>Welcome! We thank you for visiting our website (“Site”). This <strong>PRIVACY NOTICE</strong> (“Privacy Notice”) describes the ways in which your privacy is protected when you access, interact with and use this Site.</p>\n<p>By using this Site, you agree to all Giant Vapes policies made available to you within this Site including, but not limited to, our Terms and Conditions of Use and Sale (available on the Internet at https://www.giantvapes.com/terms-conditions/ (“Terms”), which are hereby incorporated by this reference. Capitalized terms not otherwise defined in this Privacy Notice shall have the meanings ascribed to them in the Terms.</p>\n<p>With respect to the collection of your information, if you do not want your personal information collected, please do not submit it to us. If you have already submitted information and would like to review, correct, or remove it from our records, please contact us. Pursuant to tobacco product regulations, user information collected during order placement and age verification will be stored for a minimum of five years and will be shared with tobacco tax enforcement or jurisdictional law enforcement as required by federal, state or local law and upon a legal request for the aforementioned information. This information is not subject to removal or alteration by request.</p>\n<p>By visiting and using the Site, you are deemed to have agreed to the provisions of this Privacy Notice, unless you are in the EEA or Switzerland in which case you are acknowledging that you have been provided this Privacy Notice.</p>\n<ol>\n<li>\n<strong>Information Collection and Use by Giant Vapes. </strong><br /><br />\n<ul>\n<li>\n<strong>Order Fulfillment</strong>. Once you purchase a Product(s) from us while on the Site, we may share with a third party the information that is necessary to fulfill the order for that Product(s). For example, if you purchase a Product on the Site using your credit card (e.g. MasterCard®, Visa®, American Express®, or Discover®), your credit card number may be securely passed (via encryption) on to our credit card processing agent and/or the card’s issuing institution (including their fraud verification and detection service providers). Likewise, the sales transaction information associated with your Product purchase, such as your shipping and/or billing address, email address, telephone number and purchased Product description, may be shared in the future, as we expand our payment method offerings, with an online payment service provider (such as PayPal® or Amazon PayPhrase®).<br /><br />\n</li>\n<li>\n<strong>Legal Compliance</strong>. Giant Vapes may disclose Users’ Personal Information when such disclosure is:<br /><br />\n</li>\n<ul>\n<li>necessary to conform to legal requirements or to respond to a subpoena, search warrant or other legal process received by Giant Vapes, whether or not a response is required by applicable law;</li>\n<li>necessary to enforce or apply our Terms and other related agreements; or</li>\n<li>to protect the rights, property, or safety of Giant Vapes, our employees, our Users or other members of the general public.</li>\n<li>Disclosures made may include exchanging information with other companies and organizations, or governmental agencies. However, this does not include selling, renting, sharing, or otherwise disclosing Personal Information from customers for commercial purposes in violation of the commitments set forth in this Privacy Notice.<br /><br />\n</li>\n</ul>\n<li>\n<strong>Business Transfers.</strong> As we continue to develop our business, we may sell or buy companies, subsidiaries, or business units. In such transactions, User information, including Personal Information, is generally considered an asset, but remains subject to the terms and conditions of any pre-existing Privacy Notice. In addition, we may transfer your personal data to a successor entity upon a merger, consolidation or other corporate reorganization in which Giant Vapes participates or to a purchaser of all or substantially all of Giant Vapes’ assets to which this Site relates. You will be notified via email and/or a prominent notice on our Web site of any change in ownership or uses of your personal data, as well as any choices you may have regarding your personal data.<br /><br />\n</li>\n</ul>\n</li>\n<ol>\n<li>At Giant Vapes we are committed to ensuring our Users’ privacy and peace of mind. Your personal information (“Personal Information”) is gathered only when you choose to share it. For purposes of the Privacy Notice, ‘personal information’ means any information relating to an identified or identifiable natural person; an identifiable natural person is one who can be identified, directly or indirectly, by reference to an identifier such as a name, an identification number, location data, an online identifier or to one or more factors specific to the physical, physiological, genetic, mental, economic, cultural or social identity of that natural person.<br /><br />\n</li>\n<li>Your Personal Information is gathered by Giant Vapes when you become a Purchaser of one (1) or more Products from the Site by providing us with information such as (by way of an example) your name, email, and address. Additionally, your Personal Information is gathered by us when you sign up for one (1) or more electronic newsletters and/or promotional e-mails that we may now or hereafter offer to our Users from time to time, or when placing a request for customer service by using the “Contact” feature contained within the Site. In both of these examples, we require the collected information in order to fulfill your request for product or information. To the extent that we use this information beyond the immediate fulfillment of your request, we retain it so that we may contact you about new products, sales, and other promotional messages we think will interest you. Finally, your Personal Information is gathered by us when clicking any one (1) or more on sponsored advertisements that we may now or hereafter provide for our Users to view while on the Site. Additionally, you can always choose to opt-out of receiving promotional e-mail and electronic newsletter communications that we may now or hereafter send to Users from time to time (see the Section on Email Choice/Opt-out for more information).</li>\n<li>\n<strong>Age Verification</strong>. To comply with U.S. federal regulations and state-specific minimum age requirements, we have implemented a third-party automated age verification system. Pursuant to tobacco product regulations, user information collected during the automated age verification process will be stored for a minimum of five years and may be shared with tobacco tax enforcement or jurisdictional law enforcement as required by federal, state or local law and upon a legal request for the aforementioned information.<br /><br />\n</li>\n<li>Giant Vapes also may automatically log non-personally-identifiable information from Users including: IP addresses, operating system or platform identification information, browser identification information, information about the Internet website(s) from which Users may have linked to our Site, User activity on the Site and the dates and times of Site visits and Product purchases. This type of information may be collected and retained through the use of cookies and other technologies, to assist us in improving the Site. We treat information collected by cookies and other technologies as non-personally identifiable information. However, to the extent that Internet Protocol (IP) addresses or similar identifiers are considered Personal Information by local law, we also treat these identifiers as Personal Information. Similarly, to the extent that non-personal information is combined with Personal Information, we treat the combined information as Personal Information for the purposes of this Privacy Notice.<br /><br />\n</li>\n<li>Technologies such as: cookies, beacons, tags and scripts are used by Giant Vapes and our partners (e.g. marketing partners), or analytics. These technologies are used in analyzing trends, administering the site, tracking users’ movements around the site and to gather demographic information about our user base as a whole. We may receive reports based on the use of these technologies by these companies on an individual as well as aggregated basis.<br /><br />\n</li>\n<li>We use cookies to remember users’ preferences (e.g. Giant Vapes search filters), for authentication, for source tracking, for analytics, or for product recommendations. Users can control the use of cookies at the individual browser level. If you reject cookies, you may still use our site, but your ability to use some features or areas of our site may be limited.<br /><br />\n</li>\n<li>We use Local Storage Objects (LSOs) such as HTML5 or Flash to store content information and preferences. Third parties with whom we partner to provide certain features on our site or to display advertising based upon your Web browsing activity use LSOs such as HTML 5 or Flash to collect and store information. Various browsers may offer their own management tools for removing HTML5 LSOs. <br /><br />\n</li>\n<li>We may partner with a third party to either display advertising on our Web site or to manage our advertising on other sites. Our third party partner may use technologies such as cookies to gather information about your activities on this site and other sites in order to provide you advertising based upon your browsing activities and interests. If you wish to not have this information used for the purpose of serving you interest-based ads.<br /><br />\n</li>\n<li>Non-personally-identifiable information may be shared in the future with third parties to provide more relevant services and advertisements to Users. Please note that Giant Vapes advertisers that may now or hereafter present or sponsor advertisements on the Site (e.g. ads presented by Google) may set and access their cookies on your computer once you click on one of their advertisements. <strong>Any advertiser’s use of cookies is subject to such advertiser’s privacy policies and terms and conditions, and not the Giant Vapes Privacy Notice or Terms.</strong><br /><br />\n</li>\n<li>You may be able to configure your browser to accept or reject all or some cookies, or notify you when a cookie is set — all browsers are different, so check the “Help” menu of your particular browser to learn how to change your Cookie preferences. Even if you have set your browser to refuse cookies, you will still be able to browse the Site. However, you must enable cookies when registering an account on our Site or when purchasing Products on the Site.<br /><br />\n</li>\n<li>From time to time, Giant Vapes and any advertisers that we may now or hereafter partner with may sponsor a promotion, sweepstakes, or contest on the Site. To participate in such promotions, sweepstakes or contests, users may be asked to provide Personal Information including their name, email address, phone number or home address, or to answer personal questions for marketing purposes. Unless otherwise specified herein, Giant Vapes will not independently transfer Personal Information to its partners. <strong>Your decision to participate in a sponsored promotion, sweepstakes or contest is entirely voluntary, and any information you provide by participating, including Personal Information, is entirely at your discretion.</strong><br /><br />\n</li>\n<li>\n<strong>Our Blog</strong>. Our Site offers publicly accessible blogs or community forums. You should be aware that any information you provide in these areas may be read, collected, and used by others who access them. To request removal of your personal data from our blog or community forum, contact us. In some cases, we may not be able to remove your personal data, in which case we will let you know if we are unable to do so and why. Because the Site provides Users with the ability to communicate with other Users and publish public commentary by posting content under the “Comments” section for each of our products, it is strongly recommended that you carefully monitor the information which you choose to share when posting content under the “Comments” section for any given product. Giant Vapes does not regularly monitor such information under the “Comments” section and is under no obligation to do so. Any Personal Information which you post in any “Comments” section may become a permanent part of the public domain and have unintended consequences. You are advised to use caution when posting anything other than Product-related comments under any “Comments” section.<br /><br />\n</li>\n<li>\n<strong>Eliquid Reviews</strong>. We display personal testimonials of satisfied customers on our Site in addition to other endorsements. With your consent we may post your testimonial along with your name. If you wish to update or delete your testimonial, you can contact us.<br /><br />\n</li>\n<li>\n<strong>Referrals</strong>. If you choose to use our “Refer a Friend” service to tell a friend about our Site, we will ask you for your friend’s information such as name and email address. We will automatically send your friend a one-time email inviting him or her to visit the site. Giant Vapes stores this information for the sole purpose of sending this one-time email and tracking the success of our referral program.<br /><br />\n</li>\n<li>Except in the limited circumstances set forth below, Giant Vapes will not sell, share or disclose Personal Information it collects to third parties without your prior consent.<br /><br />\n</li>\n</ol>\n<li>\n<strong>Security.</strong><strong> </strong> Giant Vapes takes precautions to insure that our Users’ Personal Information is secured. We use a variety of industry-standard technical, contractual, administrative and physical security measures and procedures to help protect your Personal Information from unauthorized access, use, alteration or disclosure. Unless otherwise provided for herein, we restrict access to Personal Information to those employees who need access to perform their essential job functions. Please note that despite our best efforts, no one can guarantee the security of User Personal Information. Unauthorized entry or use, hardware or software failure, and other factors may compromise the security of User Personal Information at any time.<br /><br />\n</li>\n<li>\n<strong>Hyperlinks. </strong> The Site may now or hereafter contain Internet hyperlinks (a/k/a “links”) to other websites not owned, operated or maintained in any way by Giant Vapes. Users may not post hyperlinks to third party Internet websites on the Site’s various “Comments” sections without our express written permission. In the event of the presence of such hyperlinks now or in the future, please be advised that Giant Vapes is not responsible for the privacy policies, terms and conditions, and/or information use practices or content on such other Internet websites. When linking to another Internet website, you should read that Internet website’s stated privacy policy. Our Privacy Notice only governs information collected on the Site.<br /><br />\n</li>\n<li>\n<strong>Social Media.</strong> Our Site includes social media features, such as the Facebook, Instagram, and Twitter buttons. These features may also collect your IP address, which page you are visiting on our Site, and may set a cookie (see below) to enable the feature to function properly. These features may also give you the option to post information about your activities on our Site to your profile page to share with others within your network. Your interactions with these features are governed by the privacy notice of the company providing them.<br /><br />\n</li>\n<li>\n<strong>Email Choice/Opt-out. </strong> Giant Vapes offers you choices regarding the collection, use, and sharing of your Personal Information. You have a right at any time to stop us from contacting you for promotional marketing purposes. If now or in the future you receive promotional or electronic newsletter communications from us, you may indicate a preference to stop receiving such communications from us, and you will have the opportunity to “opt-out” by clicking the “Unsubscribe” hyperlink at the bottom of all such communications. Notwithstanding your indicated email marketing preferences, we may send you administrative emails regarding Giant Vapes, including, for example, Order Confirmations and notices of updates to our Privacy Notice or the Terms if we choose to provide such notices to you in this manner.</li>\n<li>\n<strong>Visiting our Site from outside the United States. We store and process all personal information for Giant Vapes within the US.</strong> If you are visiting our Site from outside the United States, please be aware that your information will be transferred to, stored, and processed in the United States where our servers are located and our central database is operated. The data protection and other laws of the United States and other countries might not be as comprehensive as those in your country. Please be assured that we seek to take reasonable steps to ensure that your personal information is protected. By using our services, you understand that your information may be transferred to our facilities and those third parties with whom we share it as described in this Privacy Notice.</li>\n<li>\n<strong>Visiting our Site from the European Economic Area (EEA)</strong><br /><br />\n<ul>\n<li>When we collect information about you through our Site the legal basis on which we process your personal information is fulfillment of an agreement between us, namely, to provide you with the products and services or the Giant Vapes Newsletters and other information marketing our products in response to your request.<br /><br />\n</li>\n<li>When we collect information about you through our Site, the legal basis on which we process your personal information is the performance of our agreement with you to purchase or review products. When we use your personal information outside of what is strictly necessary for that transaction, we are doing so toward our legitimate interest of informing you of related products and promotions.<br /><br />\n</li>\n<li>To the extent that we transfer personal information from the EEA to a jurisdiction outside the EEA that has not been adduced by the European Commission as providing adequate data protections (such as the US), we will ensure that such personal information is safeguarded through appropriate contractual terms.<br /><br />\n</li>\n</ul>\n<ul>\n<li>In addition, if you are a resident of the EEA, you have the right to:<br /><br />\n</li>\n<li>Find out if we use your personal information, to access your personal information, and receive copies of your personal information.</li>\n</ul>\n</li>\n<ol>\n<li>The Legal Basis for Using European Personal Information<br /><br />\n</li>\n<li>Rights for EEA Residents<br /><br />\n</li>\n</ol>\n</ol>\n<ul>\n<li>Withdraw any express consent that you have provided to the processing of your personal information at any time without penalty.</li>\n</ul>\n<ul>\n<li>Access your personal information and have it corrected or amended if it is inaccurate or incomplete.</li>\n</ul>\n<ul>\n<li>Obtain a transferable copy of some of your personal information which can be transferred to another provider when the personal information was processed based on your consent.</li>\n</ul>\n<ul>\n<li>If you believe your personal information is inaccurate, no longer necessary for our business purposes, or if you object to our processing of your personal information, you also have the right to request that we restrict the processing of your data pending our investigation and/or verification of your claim.</li>\n</ul>\n<ul>\n<li>Request your personal information be deleted or restricted under certain circumstances. For example, if Giant Vapes is using your personal information on the basis of your consent and has no other legal basis to use such, you may request your personal information be deleted when you withdraw your consent.</li>\n</ul>\n<ul>\n<li><strong>If you wish to exercise any of these rights, or raise a complaint on how we have handled your personal information, please contact us.</strong></li>\n</ul>\n<ol>\n<li><strong> Changes in Our Privacy Notice.</strong></li>\n</ol>\n<p>From time-to-time we may modify, change, update, add to, remove portions of or otherwise alter this Privacy Notice. If we make changes, we will post them on our Site to make Users aware of what the changes are so Users will always be aware of what information we collect, how we collect and use that information, and when we may disclose such information.<strong> If you object to any such changes, you must immediately cease using the Site. </strong> A User is bound by any changes to this Privacy Notice when he, she or it uses the Site after those changes have been posted.</p>\n<ol>\n<li><strong> Contact, Questions or Feedback</strong></li>\n</ol>\n<p>When we receive formal written complaints, it is our policy to contact the person regarding his or her concerns. We will cooperate with the appropriate regulatory authorities, including local data protection authorities, to resolve any complaints regarding the transfer of personal data that cannot be resolved between Giant Vapes and an individual.</p>"
|
|
6
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "shipping-returns",
|
|
3
|
+
"title": "Shipping & Returns",
|
|
4
|
+
"isPolicy": true,
|
|
5
|
+
"body_html": "Giant Vapes Shipping Policy\n<p>At Giant Vapes, we take pride in our ability to provide fast and reliable shipping to our customers. To ensure this, all orders will be processed and shipped by an independent trusted third-party shipping company from one of our fulfillment centers.</p>\n<br />\n<p>We understand the importance of timely delivery, which is why we strive to get your order shipped out as soon as possible. All orders are typically shipped within 24 business hours, excluding weekends and holidays.</p>\n<br />\n<p>Please note that shipping times may vary depending on your location and the shipping method selected. Once your order has shipped, you will receive a tracking number via email so that you can easily track your package and stay up-to-date on its delivery status.</p>\n<br />\n<p>It is important to us that your order is delivered to you in a timely and secure manner. That is why we entrust an independent third-party shipping company to handle the entire shipping process.</p>\n<br />\n<p>If you have any questions or concerns about your order or its shipment, please don't hesitate to reach out to our customer service team for assistance. We're always here to help!</p>\n<h2>Returns & refunds</h2><p>We offer a monetary refund for a 30-day period for any new unopened hardware product/s. This is only available for hardware purchased from giantvapes.com, <strong>consumable nicotine products are not eligible for return, refund or exchange</strong>. The refund amount will only be for the price of the item, shipping fees and shipping insurance costs will not be refunded. Please note: <em>Clearance items are All Sales Final. No exchanges or returns.</em></p>\n<p>***Any Giant Vapes products purchased from 3rd party resellers are not eligible for refunds, and instead, fall under the specific refund policy for the store where the item(s) were purchased originally.</p>\n<p>Our refund and returns policy lasts 30 days. If 30 days have passed since your purchase, we cannot offer you a refund or exchange.</p>\n<p>To be eligible to return your item(s) must be unused and in the same condition that you received them, and still in their original packaging.</p>\n<p>To complete your return, we require a receipt or proof of purchase.</p>\n<p>If any item(s) are returned for a refund and are found to be or used in any way, no refund will be processed, and the item(s) in question will not be able to be returned to you as the customer.</p>\n<p>Giant Vapes is a reseller, not a manufacturer, if any manufacturing defects are found you must contact the manufacturer directly and submit a warranty claim with them. All after sales support for hardware is handled by the respective manufacturers. </p>\n<p>Giant Vapes utilizes a fulfillment center for shipping your order, we are not responsible for any mishandling, delay or error in the shipping process. If your order did not reach you please contact the shipper and use the provided tracking information to find your order. Shipping insurance is available at checkout, if you elect not to add shipping insurance Giant Vapes will NOT provide refunds or product replacements due to shipper negligence.</p>\n<h3><strong>Refunds</strong></h3>\n<p>To return your product, contact us for eligibility first. Once your return is received and inspected to verify it is unused and unopened, we will send you an email to notify you that we have received your returned item. We will also notify you of the approval or rejection of your refund.</p>\n<p>If you are approved, then your refund will be processed, and a credit will automatically be applied to your credit card or original method of payment within 7-10 business days.</p>\n<h3><strong>Late or missing refunds</strong></h3>\n<p>If you haven’t received a refund yet, first check your bank account again.</p>\n<p>Then contact your credit card company, it may take some time before your refund is officially posted. Next contact your bank. There is often some processing time before a refund is posted.</p>\n<h3>Sale items</h3>\n<p>Only regular priced items may be refunded. Sale items cannot be refunded or exchanged.</p>\n<h3><strong>Exchanges</strong></h3>\n<p>We only replace items if they are defective or damaged. If this is the case and you need to exchange it for the same item, please contact us.</p>\n<h3><strong>Gifts</strong></h3>\n<p>If the item was marked as a gift when purchased and shipped directly to you, you’ll receive a gift credit for the value of your return.</p>\n<p>If the item wasn’t marked as a gift when purchased, or the gift giver had the order shipped to themselves to give to you later, we will send a refund to the gift giver and they will find out about your return.</p>\n<h3><strong>Shipping returns</strong></h3>\n<p>To return your product, contact us for eligibility first.</p>\n<p>You will be responsible for paying for your own shipping costs for returning your item. Shipping costs are non-refundable. If you receive a refund, the cost of return shipping will be deducted from your refund.</p>\n<p>Depending on where you live, the time it may take for your returned product to reach us may vary.</p>\n<p>If you are returning more expensive items, you may consider using a trackable shipping service or purchasing shipping insurance. We can’t guarantee that we will receive your returned item.</p>\n<p>ALL CUSTOMERS ARE REQUIRED TO UNDERSTAND THEIR LOCAL REGULATIONS AND WE WON’T BE ABLE TO OFFER REFUNDS OR REPLACEMENT IF ISSUES ARISE.</p>"
|
|
6
|
+
}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
<head>
|
|
2
|
+
<title>News – Giant Vapes</title>
|
|
3
|
+
<meta name="description" content="The latest from Giant Vapes — vape guides, device comparisons, flavor roundups, and industry news to help you get the most out of your vaping experience.">
|
|
4
|
+
<link rel="canonical" href="https://giantvapes.com/blogs/news">
|
|
5
|
+
<meta name="robots" content="index,follow">
|
|
6
|
+
<meta property="og:type" content="website">
|
|
7
|
+
<meta property="og:site_name" content="Giant Vapes">
|
|
8
|
+
<meta property="og:title" content="News – Giant Vapes">
|
|
9
|
+
<meta property="og:description" content="Vape guides, device comparisons, and flavor roundups from Giant Vapes.">
|
|
10
|
+
<meta property="og:url" content="https://giantvapes.com/blogs/news">
|
|
11
|
+
<meta property="og:image" content="/tenants/giantvapes/img/og.jpg">
|
|
12
|
+
<meta name="twitter:card" content="summary_large_image">
|
|
13
|
+
<script type="application/ld+json">
|
|
14
|
+
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://giantvapes.com/"},{"@type":"ListItem","position":2,"name":"News","item":"https://giantvapes.com/blogs/news"}]}
|
|
15
|
+
</script>
|
|
16
|
+
<link rel="stylesheet" href="/tenants/giantvapes/pages/page.css">
|
|
17
|
+
</head>
|
|
18
|
+
<main id="main">
|
|
19
|
+
|
|
20
|
+
<section class="section section--tight">
|
|
21
|
+
<div class="container">
|
|
22
|
+
<nav class="crumbs" aria-label="Breadcrumb"><a href="/">Home</a> / News</nav>
|
|
23
|
+
<h1>News</h1>
|
|
24
|
+
</div>
|
|
25
|
+
</section>
|
|
26
|
+
|
|
27
|
+
<section class="section section--tight">
|
|
28
|
+
<div class="container">
|
|
29
|
+
<!-- Interim: individual article bodies are not yet ported, so cards link to the
|
|
30
|
+
live articles (giantvapes.com) — "Read more" therefore never 404s. Repoint
|
|
31
|
+
to internal /blogs/news/<slug> once bodies land. See styleGap giantvapes-blog-article-404. -->
|
|
32
|
+
<div class="blog-grid">
|
|
33
|
+
|
|
34
|
+
<article class="blog-card">
|
|
35
|
+
<h2><a href="https://giantvapes.com/blogs/news/pod-system-vs-box-mod-pros-cons">Pod System vs Box Mod: Pros & Cons</a></h2>
|
|
36
|
+
<a class="blog-card__more" href="https://giantvapes.com/blogs/news/pod-system-vs-box-mod-pros-cons">Read more</a>
|
|
37
|
+
</article>
|
|
38
|
+
|
|
39
|
+
<article class="blog-card">
|
|
40
|
+
<h2><a href="https://giantvapes.com/blogs/news/which-vape-device-is-best-for-heavy-smokers">Which Vape Device Is Best for Heavy Smokers?</a></h2>
|
|
41
|
+
<a class="blog-card__more" href="https://giantvapes.com/blogs/news/which-vape-device-is-best-for-heavy-smokers">Read more</a>
|
|
42
|
+
</article>
|
|
43
|
+
|
|
44
|
+
<article class="blog-card">
|
|
45
|
+
<h2><a href="https://giantvapes.com/blogs/news/top-dessert-flavors-vapers-can-t-get-enough-of-in-2026">Top Dessert Flavors Vapers Can't Get Enough Of in 2026</a></h2>
|
|
46
|
+
<a class="blog-card__more" href="https://giantvapes.com/blogs/news/top-dessert-flavors-vapers-can-t-get-enough-of-in-2026">Read more</a>
|
|
47
|
+
</article>
|
|
48
|
+
|
|
49
|
+
<article class="blog-card">
|
|
50
|
+
<h2><a href="https://giantvapes.com/blogs/news/best-summer-vape-flavors-of-2026-fruit-ice-tropical-picks">Best Summer Vape Flavors of 2026: Fruit, Ice & Tropical Picks</a></h2>
|
|
51
|
+
<a class="blog-card__more" href="https://giantvapes.com/blogs/news/best-summer-vape-flavors-of-2026-fruit-ice-tropical-picks">Read more</a>
|
|
52
|
+
</article>
|
|
53
|
+
|
|
54
|
+
<article class="blog-card">
|
|
55
|
+
<h2><a href="https://giantvapes.com/blogs/news/how-to-make-your-disposable-last-longer">How to Make Your Disposable Last Longer</a></h2>
|
|
56
|
+
<a class="blog-card__more" href="https://giantvapes.com/blogs/news/how-to-make-your-disposable-last-longer">Read more</a>
|
|
57
|
+
</article>
|
|
58
|
+
|
|
59
|
+
<article class="blog-card">
|
|
60
|
+
<h2><a href="https://giantvapes.com/blogs/news/salt-nic-vs-freebase-nicotine-what-s-the-difference">Salt Nic vs Freebase Nicotine: What's the Difference?</a></h2>
|
|
61
|
+
<a class="blog-card__more" href="https://giantvapes.com/blogs/news/salt-nic-vs-freebase-nicotine-what-s-the-difference">Read more</a>
|
|
62
|
+
</article>
|
|
63
|
+
|
|
64
|
+
</div>
|
|
65
|
+
</div>
|
|
66
|
+
</section>
|
|
67
|
+
|
|
68
|
+
</main>
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
<head>
|
|
2
|
+
<title>About Us | Vape Juice Online | Giant Vapes</title>
|
|
3
|
+
<meta name="description" content="Giant Vapes was founded in September of 2013 with a single goal: to make the best e-liquids on the market available in one user-friendly, unified place, saving vapers time and money.">
|
|
4
|
+
<link rel="canonical" href="https://giantvapes.com/pages/about-us">
|
|
5
|
+
<meta name="robots" content="index,follow">
|
|
6
|
+
<meta property="og:type" content="website">
|
|
7
|
+
<meta property="og:site_name" content="Giant Vapes">
|
|
8
|
+
<meta property="og:title" content="About Us | Giant Vapes">
|
|
9
|
+
<meta property="og:description" content="A company founded by vapers, for vapers. Premium products, great prices, exemplary service since 2013.">
|
|
10
|
+
<meta property="og:url" content="https://giantvapes.com/pages/about-us">
|
|
11
|
+
<meta property="og:image" content="/tenants/giantvapes/img/og.jpg">
|
|
12
|
+
<meta name="twitter:card" content="summary_large_image">
|
|
13
|
+
<script type="application/ld+json">
|
|
14
|
+
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://giantvapes.com/"},{"@type":"ListItem","position":2,"name":"About Us","item":"https://giantvapes.com/pages/about-us"}]}
|
|
15
|
+
</script>
|
|
16
|
+
<link rel="stylesheet" href="/tenants/giantvapes/pages/page.css">
|
|
17
|
+
</head>
|
|
18
|
+
<main id="main">
|
|
19
|
+
|
|
20
|
+
<!-- Hero -->
|
|
21
|
+
<section class="page-hero page-hero--center section--tight">
|
|
22
|
+
<div class="container">
|
|
23
|
+
<nav class="crumbs" aria-label="Breadcrumb"><a href="/">Home</a> / About Us</nav>
|
|
24
|
+
<span class="eyebrow">Since 2013</span>
|
|
25
|
+
<h1>Founded by vapers, for vapers.</h1>
|
|
26
|
+
<p>Premium products, great prices, and exemplary service to vapers around the world.</p>
|
|
27
|
+
</div>
|
|
28
|
+
</section>
|
|
29
|
+
|
|
30
|
+
<!-- Our Story -->
|
|
31
|
+
<section class="section split" aria-labelledby="story-h">
|
|
32
|
+
<div class="container">
|
|
33
|
+
<div class="split__copy">
|
|
34
|
+
<h2 id="story-h">Our Story</h2>
|
|
35
|
+
<p>Giant Vapes was founded in September of 2013 with a single goal: to make the best e-liquids on the market available in one user-friendly, unified place, saving vapers time and money. As the vape industry has grown, so have we, expanding our selection of products, our involvement in the vape community, and our staff to meet the growing needs of our customers.</p>
|
|
36
|
+
<p>Giant Vapes is a company founded by vapers, for vapers. We built this business with the best interests of the vaping community in mind, and we will continue to dedicate ourselves to providing premium products at great prices and exemplary service to vapers around the world.</p>
|
|
37
|
+
<a class="btn btn-primary" href="/collections/all">Shop Now</a>
|
|
38
|
+
</div>
|
|
39
|
+
<div class="split__media">
|
|
40
|
+
<img src="/tenants/giantvapes/img/hero-suicide-bunny.jpg" alt="Giant Vapes premium e-liquid selection" width="720" height="720" loading="lazy">
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
</section>
|
|
44
|
+
|
|
45
|
+
<!-- Values -->
|
|
46
|
+
<section class="section section--surface" aria-labelledby="values-h">
|
|
47
|
+
<div class="container">
|
|
48
|
+
<div class="sec-head">
|
|
49
|
+
<h2 id="values-h">What We're About</h2>
|
|
50
|
+
<p>The commitments that shape every order we ship.</p>
|
|
51
|
+
</div>
|
|
52
|
+
<div class="value-grid">
|
|
53
|
+
<div class="value-card">
|
|
54
|
+
<h3>We are passionate about vaping</h3>
|
|
55
|
+
<p>Giant Vapes is a company founded by and staffed by vapers. Every line we bring in is carefully curated. The products we make available use premium ingredients, are properly and carefully manufactured, and come from vendors who share our concern for the future of this industry. We carry e-liquid and hardware that we believe in, and that we use every day.</p>
|
|
56
|
+
</div>
|
|
57
|
+
<div class="value-card">
|
|
58
|
+
<h3>We are obsessed with fulfillment</h3>
|
|
59
|
+
<p>That's right — we spend most of our time and manpower on getting your orders shipped quickly and correctly. We don't mind bragging about our staff: our shipping team is the best in the business, and they're constantly innovating and improving to make sure your orders get out lightning-fast.</p>
|
|
60
|
+
</div>
|
|
61
|
+
<div class="value-card">
|
|
62
|
+
<h3>We are dedicated to customer service</h3>
|
|
63
|
+
<p>Our fulfillment team makes sure your orders go out quickly and correctly, and our customer service team is here just in case there's a problem with your shipment. And, of course, they love to answer questions and make recommendations — our service staff is proud to be there when you need them.</p>
|
|
64
|
+
</div>
|
|
65
|
+
<div class="value-card">
|
|
66
|
+
<h3>We are committed to advocacy</h3>
|
|
67
|
+
<p>We work with state and national advocacy groups around the country to educate legislators and consumers, lobby for fair regulations, and secure the future of vaping.</p>
|
|
68
|
+
</div>
|
|
69
|
+
<div class="value-card">
|
|
70
|
+
<h3>We are inspired by our community</h3>
|
|
71
|
+
<p>Meeting and talking to vapers around the world is one of the most rewarding parts of being in this business.</p>
|
|
72
|
+
</div>
|
|
73
|
+
</div>
|
|
74
|
+
</div>
|
|
75
|
+
</section>
|
|
76
|
+
|
|
77
|
+
<!-- Find Your Fav -->
|
|
78
|
+
<section class="section" aria-labelledby="pick-h">
|
|
79
|
+
<div class="container">
|
|
80
|
+
<div class="sec-head">
|
|
81
|
+
<h2 id="pick-h">Find Your Fav</h2>
|
|
82
|
+
<p>Pick the setup that fits your routine.</p>
|
|
83
|
+
</div>
|
|
84
|
+
<div class="pick-grid">
|
|
85
|
+
<a class="pick-card" href="/collections/all"><h3>E-Liquid</h3><span>Shop E-Liquid</span></a>
|
|
86
|
+
<a class="pick-card" href="/collections/salt-nic"><h3>Salt Nic</h3><span>Shop Salt Nic</span></a>
|
|
87
|
+
<a class="pick-card" href="/collections/all-disposables"><h3>Disposables</h3><span>Shop Disposables</span></a>
|
|
88
|
+
<a class="pick-card" href="/collections/vaporesso"><h3>Hardware</h3><span>Shop Hardware</span></a>
|
|
89
|
+
<a class="pick-card" href="/collections/nicotine-pouches"><h3>Nic Pouches</h3><span>Shop Nic Pouches</span></a>
|
|
90
|
+
<a class="pick-card" href="/collections/clearance"><h3>Clearance</h3><span>Shop Clearance</span></a>
|
|
91
|
+
</div>
|
|
92
|
+
</div>
|
|
93
|
+
</section>
|
|
94
|
+
|
|
95
|
+
</main>
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
<head>
|
|
2
|
+
<title>Contact Us | Vaping Accessories Online | Giant Vapes</title>
|
|
3
|
+
<meta name="description" content="Contact Giant Vapes. We're here Monday through Friday, 9:00 AM to 5:00 PM CST. Send us a message and we'll respond to order-related messages within 24 business hours.">
|
|
4
|
+
<link rel="canonical" href="https://giantvapes.com/pages/contact-us">
|
|
5
|
+
<meta name="robots" content="index,follow">
|
|
6
|
+
<meta property="og:type" content="website">
|
|
7
|
+
<meta property="og:site_name" content="Giant Vapes">
|
|
8
|
+
<meta property="og:title" content="Contact Us | Giant Vapes">
|
|
9
|
+
<meta property="og:description" content="We're here Monday–Friday, 9:00 AM–5:00 PM CST. We respond to order-related messages within 24 business hours.">
|
|
10
|
+
<meta property="og:url" content="https://giantvapes.com/pages/contact-us">
|
|
11
|
+
<meta property="og:image" content="/tenants/giantvapes/img/og.jpg">
|
|
12
|
+
<meta name="twitter:card" content="summary_large_image">
|
|
13
|
+
<script type="application/ld+json">
|
|
14
|
+
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://giantvapes.com/"},{"@type":"ListItem","position":2,"name":"Contact Us","item":"https://giantvapes.com/pages/contact-us"}]}
|
|
15
|
+
</script>
|
|
16
|
+
<link rel="stylesheet" href="/tenants/giantvapes/pages/page.css">
|
|
17
|
+
</head>
|
|
18
|
+
<main id="main">
|
|
19
|
+
|
|
20
|
+
<!-- Hero -->
|
|
21
|
+
<section class="page-hero page-hero--center section--tight">
|
|
22
|
+
<div class="container">
|
|
23
|
+
<nav class="crumbs" aria-label="Breadcrumb"><a href="/">Home</a> / Contact Us</nav>
|
|
24
|
+
<h1>Contact Giant Vapes</h1>
|
|
25
|
+
<p>We're here for you Monday through Friday, 9:00 AM to 5:00 PM CST (closed on weekends and holidays).</p>
|
|
26
|
+
</div>
|
|
27
|
+
</section>
|
|
28
|
+
|
|
29
|
+
<!-- Contact info + form -->
|
|
30
|
+
<section class="section" aria-labelledby="contact-h">
|
|
31
|
+
<h2 id="contact-h" class="sr-only">Get in touch</h2>
|
|
32
|
+
<div class="container">
|
|
33
|
+
<div class="contact-grid">
|
|
34
|
+
<div class="contact-card">
|
|
35
|
+
<h3>Support hours</h3>
|
|
36
|
+
<p>Monday–Friday, 9:00 AM–5:00 PM CST. Closed on weekends and holidays.</p>
|
|
37
|
+
</div>
|
|
38
|
+
<div class="contact-card">
|
|
39
|
+
<h3>Customer support</h3>
|
|
40
|
+
<p>We respond to all order-related messages within 24 business hours. For quick answers, check our <a href="/pages/faq">FAQ</a>.</p>
|
|
41
|
+
</div>
|
|
42
|
+
<div class="contact-card">
|
|
43
|
+
<h3>Track your order</h3>
|
|
44
|
+
<p>Transit times are estimates from the carrier — refer to your tracking email for the latest updates, or use <a href="/pages/order-tracking">Order Tracking</a>.</p>
|
|
45
|
+
</div>
|
|
46
|
+
</div>
|
|
47
|
+
|
|
48
|
+
<div class="prose" style="margin-top:2.2rem">
|
|
49
|
+
<h2>Shipping details</h2>
|
|
50
|
+
<ul class="bullets">
|
|
51
|
+
<li>Orders placed after 9:00 AM will typically ship the next business day.</li>
|
|
52
|
+
<li>During busy periods, processing may take 1–3 business days — rest assured, we're working hard to get your order out quickly.</li>
|
|
53
|
+
</ul>
|
|
54
|
+
</div>
|
|
55
|
+
|
|
56
|
+
<form class="contact-form" action="/api/contact" method="post">
|
|
57
|
+
<div class="row2">
|
|
58
|
+
<input type="text" name="name" aria-label="Name" placeholder="Name" required>
|
|
59
|
+
<input type="email" name="email" aria-label="Email" placeholder="Email" required>
|
|
60
|
+
</div>
|
|
61
|
+
<input type="text" name="order" aria-label="Order number (optional)" placeholder="Order number (optional)">
|
|
62
|
+
<textarea name="comment" aria-label="How can we help?" placeholder="How can we help?"></textarea>
|
|
63
|
+
<button type="submit" class="btn btn-primary">Send Message</button>
|
|
64
|
+
</form>
|
|
65
|
+
</div>
|
|
66
|
+
</section>
|
|
67
|
+
|
|
68
|
+
</main>
|