@tokenoftrust/cli 1.2.1 → 1.2.3
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/bin/tot.mjs +1 -5
- package/package.json +1 -2
- package/src/auth.mjs +66 -1
- package/src/commands/checkout.mjs +42 -4
- package/src/commands/dev.mjs +58 -18
- package/src/commands/feedback.mjs +8 -3
- package/src/commands/start.mjs +98 -30
- package/src/commands/submit.mjs +8 -8
- package/src/commands/whoami.mjs +10 -5
- package/src/sample.mjs +6 -1
- package/template/sample-store/content/chrome.html +0 -152
- package/template/sample-store/content/chrome.json +0 -94
- package/template/sample-store/content/home.html +0 -194
- package/template/sample-store/content/home.json +0 -50
- package/template/sample-store/content/pages/about.json +0 -10
- package/template/sample-store/content/pages/privacy.json +0 -6
- package/template/sample-store/content/pages/shipping-returns.json +0 -6
- package/template/sample-store/content/pages-html/blogs/news.html +0 -68
- package/template/sample-store/content/pages-html/pages/about-us.html +0 -95
- package/template/sample-store/content/pages-html/pages/contact-us.html +0 -68
- package/template/sample-store/content/pages-html/pages/privacy-policy.html +0 -65
- package/template/sample-store/content/pages-html/pages/shipping-returns.html +0 -77
- package/template/sample-store/content/themes/giant-navy.json +0 -73
- package/template/sample-store/public/img/hero-suicide-bunny.jpg +0 -0
- package/template/sample-store/public/img/hero.webp +0 -0
- package/template/sample-store/public/img/og.jpg +0 -0
- package/template/sample-store/public/logo-wordmark.png +0 -0
- package/template/sample-store/public/pages/home.css +0 -120
- package/template/sample-store/public/pages/mkt.css +0 -185
- package/template/sample-store/public/pages/page.css +0 -155
- package/template/sample-store/public/themes/giant-navy.css +0 -76
- package/template/sample-store/theme.json +0 -39
package/src/commands/whoami.mjs
CHANGED
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
* Dependency-free.
|
|
11
11
|
*/
|
|
12
12
|
import { defaultCredentialsPath, readCredentials, isExpired } from "../token-store.mjs";
|
|
13
|
-
import { hasOperatorCreds,
|
|
13
|
+
import { hasOperatorCreds, establishSession } from "../auth.mjs";
|
|
14
14
|
import { createMcpClient } from "../mcp.mjs";
|
|
15
|
-
import { normalizeStores } from "./checkout.mjs";
|
|
15
|
+
import { normalizeStores, storeListError } from "./checkout.mjs";
|
|
16
16
|
import { recordServerPolicy } from "../update-check.mjs";
|
|
17
17
|
|
|
18
18
|
/**
|
|
@@ -55,17 +55,22 @@ export async function run(argv, _ctx) {
|
|
|
55
55
|
// identity or an unreachable MCP just shows the cached status above.
|
|
56
56
|
try {
|
|
57
57
|
const client = createMcpClient(status.mcpUrl || env.MCP_BASE_URL || env.TOT_MCP_URL || "https://mcp.tokenoftrust.com");
|
|
58
|
-
|
|
59
|
-
|
|
58
|
+
// Developer bearer must be attached BEFORE initialize so the server binds this
|
|
59
|
+
// identity at handshake time — otherwise client_list resolves anonymously and
|
|
60
|
+
// (misleadingly) reports no stores (establishSession orders this correctly).
|
|
61
|
+
await establishSession(client, { env, prefer: "developer" });
|
|
60
62
|
const listResp = await client.callTool("client_list", {});
|
|
61
63
|
// Update-awareness Layer 2: an authed response may carry a version-support
|
|
62
64
|
// policy (wire contract: `cliPolicy`). Safe no-op when absent.
|
|
63
65
|
recordServerPolicy(listResp?.cliPolicy, env);
|
|
66
|
+
const listErr = storeListError(listResp);
|
|
64
67
|
const stores = normalizeStores(listResp);
|
|
65
68
|
if (stores.length) {
|
|
66
69
|
console.log(` stores you can build on: ${stores.map((s) => s.id).join(", ")}`);
|
|
70
|
+
} else if (listErr) {
|
|
71
|
+
console.log(` (couldn't list your stores: ${listErr} — try \`tot login\` again)`);
|
|
67
72
|
} else {
|
|
68
|
-
console.log(" (no stores resolved yet
|
|
73
|
+
console.log(" (no stores resolved yet — if you were just invited, it may still be propagating)");
|
|
69
74
|
}
|
|
70
75
|
} catch {
|
|
71
76
|
console.log(" (couldn't reach the MCP to list your stores right now — your cached session is above)");
|
package/src/sample.mjs
CHANGED
|
@@ -110,7 +110,12 @@ export function scaffoldSample(destDir, { force = false, log = () => {} } = {})
|
|
|
110
110
|
|
|
111
111
|
const template = sampleTemplateDir();
|
|
112
112
|
if (!existsSync(template)) {
|
|
113
|
-
|
|
113
|
+
const err = new Error(
|
|
114
|
+
"the sample store isn't available in this release yet — it's coming soon. " +
|
|
115
|
+
"To build a real store now: `tot login --code <invite>` then `tot start`.",
|
|
116
|
+
);
|
|
117
|
+
err.code = "SAMPLE_UNAVAILABLE";
|
|
118
|
+
throw err;
|
|
114
119
|
}
|
|
115
120
|
|
|
116
121
|
mkdirSync(dir, { recursive: true });
|
|
@@ -1,152 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8">
|
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
-
<link rel="icon" type="image/png" href="/tenants/giantvapes/logo-wordmark.png">
|
|
7
|
-
<link rel="stylesheet" href="/tenants/giantvapes/themes/giant-navy.css">
|
|
8
|
-
<link rel="stylesheet" href="/tenants/giantvapes/pages/mkt.css">
|
|
9
|
-
<!--PAGE_HEAD-->
|
|
10
|
-
</head>
|
|
11
|
-
<body>
|
|
12
|
-
<a class="skip-link" href="#main">Skip to main content</a>
|
|
13
|
-
|
|
14
|
-
<!-- Top FDA warning bar -->
|
|
15
|
-
<div class="topbar-warning"><p>WARNING: This product contains nicotine. Nicotine is an addictive chemical.</p></div>
|
|
16
|
-
|
|
17
|
-
<!-- Announcement: scrolling marquee -->
|
|
18
|
-
<div class="announce-marquee" aria-label="Free US shipping on orders over $100">
|
|
19
|
-
<div class="announce-marquee__track" aria-hidden="true">
|
|
20
|
-
<span>FREE U.S. Shipping on Orders Over $100!</span><span>FREE U.S. Shipping on Orders Over $100!</span><span>FREE U.S. Shipping on Orders Over $100!</span><span>FREE U.S. Shipping on Orders Over $100!</span>
|
|
21
|
-
<span>FREE U.S. Shipping on Orders Over $100!</span><span>FREE U.S. Shipping on Orders Over $100!</span><span>FREE U.S. Shipping on Orders Over $100!</span><span>FREE U.S. Shipping on Orders Over $100!</span>
|
|
22
|
-
</div>
|
|
23
|
-
</div>
|
|
24
|
-
|
|
25
|
-
<!-- Utility nav -->
|
|
26
|
-
<div class="utility-nav">
|
|
27
|
-
<div class="container">
|
|
28
|
-
<ul>
|
|
29
|
-
<li><a href="/blogs/news">News</a></li>
|
|
30
|
-
<li><a href="/pages/about-us">About</a></li>
|
|
31
|
-
<li><a href="/pages/contact-us">Contact</a></li>
|
|
32
|
-
<li><a href="/pages/faq">FAQ</a></li>
|
|
33
|
-
<li><a href="/pages/order-tracking">Track Order</a></li>
|
|
34
|
-
</ul>
|
|
35
|
-
<div class="utility-nav__right">
|
|
36
|
-
<span class="sel">English</span>
|
|
37
|
-
<span class="sel">United States (USD $)</span>
|
|
38
|
-
<span class="social">
|
|
39
|
-
<a href="https://instagram.com/giantvapes" aria-label="Instagram" rel="noopener"><svg viewBox="0 0 24 24"><rect x="3" y="3" width="18" height="18" rx="5"/><circle cx="12" cy="12" r="4"/><circle cx="17.5" cy="6.5" r="1.1"/></svg></a>
|
|
40
|
-
<a href="https://facebook.com/giantvapes" aria-label="Facebook" rel="noopener"><svg viewBox="0 0 24 24"><path d="M14 8h2V5h-2a4 4 0 0 0-4 4v2H8v3h2v6h3v-6h2.2l.8-3H13V9a1 1 0 0 1 1-1z"/></svg></a>
|
|
41
|
-
</span>
|
|
42
|
-
</div>
|
|
43
|
-
</div>
|
|
44
|
-
</div>
|
|
45
|
-
|
|
46
|
-
<!-- Header -->
|
|
47
|
-
<header class="site-header">
|
|
48
|
-
<div class="container header-row">
|
|
49
|
-
<a class="brand" href="/" aria-label="Giant Vapes home"><img src="/tenants/giantvapes/logo-wordmark.png" alt="Giant Vapes" width="200" height="106"></a>
|
|
50
|
-
<form class="header-search" action="/search" method="get" role="search">
|
|
51
|
-
<label class="sr-only" for="hdr-q">Search for anything</label>
|
|
52
|
-
<input id="hdr-q" type="search" name="q" placeholder="Search e-liquids, disposables, hardware" autocomplete="off">
|
|
53
|
-
<button type="submit" aria-label="Search"><svg viewBox="0 0 24 24"><circle cx="11" cy="11" r="7"/><path d="M21 21l-4.3-4.3"/></svg></button>
|
|
54
|
-
</form>
|
|
55
|
-
<div class="header-actions">
|
|
56
|
-
<a href="/account" aria-label="Account"><svg viewBox="0 0 24 24"><circle cx="12" cy="8" r="4"/><path d="M4 21c0-4.4 3.6-7 8-7s8 2.6 8 7"/></svg></a>
|
|
57
|
-
<a class="cart" href="/cart" aria-label="Cart"><svg viewBox="0 0 24 24"><path d="M6 6h15l-1.5 9h-12z"/><circle cx="9" cy="20" r="1.4"/><circle cx="18" cy="20" r="1.4"/><path d="M6 6L5 3H2"/></svg><span class="count">0</span></a>
|
|
58
|
-
<button class="hamburger" id="hamburger" aria-label="Toggle navigation menu" aria-expanded="false" aria-controls="primaryNav"><span></span><span></span><span></span></button>
|
|
59
|
-
</div>
|
|
60
|
-
</div>
|
|
61
|
-
<nav class="primary-nav-bar" aria-label="Primary">
|
|
62
|
-
<div class="container">
|
|
63
|
-
<nav class="primary-nav" id="primaryNav">
|
|
64
|
-
<ul>
|
|
65
|
-
<li><a href="/collections/all">E-Liquid<span class="caret">▾</span></a></li>
|
|
66
|
-
<li><a href="/collections/salt-nic">Salt Nic</a></li>
|
|
67
|
-
<li><a href="/collections/all-disposables">Disposables<span class="caret">▾</span></a></li>
|
|
68
|
-
<li><a href="/collections/vaporesso">Hardware<span class="caret">▾</span></a></li>
|
|
69
|
-
<li><a href="/collections/nicotine-pouches">Nic Pouches</a></li>
|
|
70
|
-
<li><a href="/collections/new-arrivals">New Arrivals</a></li>
|
|
71
|
-
<li><a class="is-flag" href="/collections/clearance">Clearance<span class="new-badge">SALE</span></a></li>
|
|
72
|
-
<li><a href="/collections/all">Brands<span class="caret">▾</span></a></li>
|
|
73
|
-
</ul>
|
|
74
|
-
</nav>
|
|
75
|
-
</div>
|
|
76
|
-
</nav>
|
|
77
|
-
</header>
|
|
78
|
-
|
|
79
|
-
<!--PAGE_BODY-->
|
|
80
|
-
|
|
81
|
-
<!-- Compliance strip -->
|
|
82
|
-
<div class="compliance-strip">
|
|
83
|
-
<div class="container"><p>WARNING: This product contains nicotine. Nicotine is an addictive chemical.</p></div>
|
|
84
|
-
</div>
|
|
85
|
-
|
|
86
|
-
<!-- Footer -->
|
|
87
|
-
<footer class="site-footer">
|
|
88
|
-
<div class="container">
|
|
89
|
-
<div class="footer-grid">
|
|
90
|
-
<div class="footer-brand">
|
|
91
|
-
<img src="/tenants/giantvapes/logo-wordmark.png" alt="Giant Vapes" width="200" height="106">
|
|
92
|
-
<p>Premium e-liquid, salts, and disposables — shipped fast.<br>Serving vapers online since 2013.</p>
|
|
93
|
-
</div>
|
|
94
|
-
<div class="footer-col">
|
|
95
|
-
<h4>Shop</h4>
|
|
96
|
-
<ul>
|
|
97
|
-
<li><a href="/collections/all">E-Liquid</a></li>
|
|
98
|
-
<li><a href="/collections/salt-nic">Salt Nic</a></li>
|
|
99
|
-
<li><a href="/collections/all-disposables">Disposables</a></li>
|
|
100
|
-
<li><a href="/collections/vaporesso">Hardware</a></li>
|
|
101
|
-
<li><a href="/collections/nicotine-pouches">Nic Pouches</a></li>
|
|
102
|
-
<li><a href="/collections/clearance">Clearance</a></li>
|
|
103
|
-
</ul>
|
|
104
|
-
</div>
|
|
105
|
-
<div class="footer-col">
|
|
106
|
-
<h4>Support</h4>
|
|
107
|
-
<ul>
|
|
108
|
-
<li><a href="/search">Search</a></li>
|
|
109
|
-
<li><a href="/pages/about-us">About Us</a></li>
|
|
110
|
-
<li><a href="/pages/contact-us">Contact Us</a></li>
|
|
111
|
-
<li><a href="/pages/faq">FAQ</a></li>
|
|
112
|
-
<li><a href="/pages/order-tracking">Order Tracking</a></li>
|
|
113
|
-
<li><a href="/blogs/news">Blog</a></li>
|
|
114
|
-
</ul>
|
|
115
|
-
</div>
|
|
116
|
-
<div class="footer-col">
|
|
117
|
-
<h4>Company</h4>
|
|
118
|
-
<ul>
|
|
119
|
-
<li><a href="/pages/shipping-returns">Shipping & Returns</a></li>
|
|
120
|
-
<li><a href="/pages/privacy-policy">Privacy Policy</a></li>
|
|
121
|
-
<li><a href="/pages/giant-distribution">Wholesale</a></li>
|
|
122
|
-
</ul>
|
|
123
|
-
<form class="footer-news" action="/api/newsletter" method="post">
|
|
124
|
-
<input type="hidden" name="source" value="footer">
|
|
125
|
-
<label class="sr-only" for="foot-email">Email</label>
|
|
126
|
-
<input id="foot-email" type="email" name="email" placeholder="Email" required>
|
|
127
|
-
<button type="submit" aria-label="Subscribe">→</button>
|
|
128
|
-
</form>
|
|
129
|
-
<div class="pay-badges" aria-label="Accepted payments">
|
|
130
|
-
<span>AMEX</span><span>Discover</span><span>Mastercard</span><span>Visa</span><span>PayPal</span>
|
|
131
|
-
</div>
|
|
132
|
-
</div>
|
|
133
|
-
</div>
|
|
134
|
-
<div class="footer-warning">
|
|
135
|
-
<p><strong>WARNING:</strong> This product contains nicotine. Nicotine is an addictive chemical. Products intended for adults of legal smoking age (21+) only.</p>
|
|
136
|
-
</div>
|
|
137
|
-
<div class="footer-bottom">
|
|
138
|
-
<p>© Giant Vapes, LLC. All rights reserved.</p>
|
|
139
|
-
<p>Must be 21 or older to purchase. Not for sale to minors.</p>
|
|
140
|
-
</div>
|
|
141
|
-
</div>
|
|
142
|
-
</footer>
|
|
143
|
-
|
|
144
|
-
<script>
|
|
145
|
-
(function () {
|
|
146
|
-
var burger = document.getElementById('hamburger');
|
|
147
|
-
var nav = document.getElementById('primaryNav');
|
|
148
|
-
if (burger && nav) burger.addEventListener('click', function () { var o = nav.classList.toggle('open'); burger.setAttribute('aria-expanded', o ? 'true' : 'false'); });
|
|
149
|
-
})();
|
|
150
|
-
</script>
|
|
151
|
-
</body>
|
|
152
|
-
</html>
|
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"announcement": "FREE U.S. Shipping on Orders Over $100!",
|
|
3
|
-
"nav": [
|
|
4
|
-
{
|
|
5
|
-
"label": "E-Liquid",
|
|
6
|
-
"href": "/collections/fruity-e-liquids",
|
|
7
|
-
"children": [
|
|
8
|
-
{
|
|
9
|
-
"label": "Fruity E-Liquids",
|
|
10
|
-
"href": "/collections/fruity-e-liquids"
|
|
11
|
-
},
|
|
12
|
-
{
|
|
13
|
-
"label": "Nicotine Salts",
|
|
14
|
-
"href": "/collections/nicotine-salts"
|
|
15
|
-
}
|
|
16
|
-
]
|
|
17
|
-
},
|
|
18
|
-
{
|
|
19
|
-
"label": "Fruity E-Liquids",
|
|
20
|
-
"href": "/collections/fruity-e-liquids"
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
"label": "Nicotine Salts",
|
|
24
|
-
"href": "/collections/nicotine-salts"
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"label": "Disposables",
|
|
28
|
-
"href": "/collections/all-disposables"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"label": "About",
|
|
32
|
-
"href": "/about"
|
|
33
|
-
}
|
|
34
|
-
],
|
|
35
|
-
"footer": {
|
|
36
|
-
"tagline": "Premium e-liquid, salts, and disposables — shipped fast.",
|
|
37
|
-
"columns": [
|
|
38
|
-
{
|
|
39
|
-
"title": "Shop",
|
|
40
|
-
"links": [
|
|
41
|
-
{
|
|
42
|
-
"label": "Fruity E-Liquids",
|
|
43
|
-
"href": "/collections/fruity-e-liquids"
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
"label": "Nicotine Salts",
|
|
47
|
-
"href": "/collections/nicotine-salts"
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"label": "Disposables",
|
|
51
|
-
"href": "/collections/all-disposables"
|
|
52
|
-
},
|
|
53
|
-
{
|
|
54
|
-
"label": "Search",
|
|
55
|
-
"href": "/search"
|
|
56
|
-
}
|
|
57
|
-
]
|
|
58
|
-
},
|
|
59
|
-
{
|
|
60
|
-
"title": "Company",
|
|
61
|
-
"links": [
|
|
62
|
-
{
|
|
63
|
-
"label": "About",
|
|
64
|
-
"href": "/about"
|
|
65
|
-
},
|
|
66
|
-
{
|
|
67
|
-
"label": "Shipping & Returns",
|
|
68
|
-
"href": "/shipping-returns"
|
|
69
|
-
},
|
|
70
|
-
{
|
|
71
|
-
"label": "Privacy",
|
|
72
|
-
"href": "/privacy"
|
|
73
|
-
}
|
|
74
|
-
]
|
|
75
|
-
}
|
|
76
|
-
],
|
|
77
|
-
"social": [
|
|
78
|
-
{
|
|
79
|
-
"label": "Instagram",
|
|
80
|
-
"href": "https://instagram.com"
|
|
81
|
-
},
|
|
82
|
-
{
|
|
83
|
-
"label": "Newsletter",
|
|
84
|
-
"href": "#newsletter"
|
|
85
|
-
}
|
|
86
|
-
]
|
|
87
|
-
},
|
|
88
|
-
"disclaimer": "<p>This product can expose you to chemicals including Nicotine, which is known to the State of California to cause birth defects or other reproductive harm. For more information go to <a href=\"http://www.p65warnings.ca.gov\">www.P65Warnings.ca.gov</a><p></p>\n<p>Giant Vapes will not be held liable for any injury, damage, or defect, permanent or temporary that may be caused by the improper use of these products. Please have a great understanding of the items you are using and how to store, use and care for your products properly. Terms and Conditions.</p>\n<p><b>WARNING:</b> This product can expose you to chemicals including Nicotine, which is known to the State of California to cause birth defects or other reproductive harm. For more information go to <a href=\"http://www.p65warnings.ca.gov\">www.P65Warnings.ca.gov</a></p>\n<p>This consumable nicotine product is not eligible for return, refund or exchange.</p>",
|
|
89
|
-
"disclaimers": {
|
|
90
|
-
"Vape Juice": "<p>This product can expose you to chemicals including Nicotine, which is known to the State of California to cause birth defects or other reproductive harm. For more information go to <a href=\"http://www.p65warnings.ca.gov\">www.P65Warnings.ca.gov</a><p></p>\n<p>Giant Vapes will not be held liable for any injury, damage, or defect, permanent or temporary that may be caused by the improper use of these products. Please have a great understanding of the items you are using and how to store, use and care for your products properly. Terms and Conditions.</p>\n<p><b>WARNING:</b> This product can expose you to chemicals including Nicotine, which is known to the State of California to cause birth defects or other reproductive harm. For more information go to <a href=\"http://www.p65warnings.ca.gov\">www.P65Warnings.ca.gov</a></p>\n<p>This consumable nicotine product is not eligible for return, refund or exchange.</p>",
|
|
91
|
-
"Nicotine Salt": "<p><b>WARNING: Do not use this product in sub-ohm tanks or with sub-ohm coils.</b> This eliquid contains nicotine salt and has a substantially higher amount of nicotine per milliliter than other eliquids. This eliquid is designed <b>only</b> for use with high-resistance coils (1.0 ohm or higher) and ultra low output/low wattage vaping devices.<p></p>\n<p>This product can expose you to chemicals including Nicotine, which is known to the State of California to cause birth defects or other reproductive harm. For more information go to <a href=\"http://www.p65warnings.ca.gov\">www.P65Warnings.ca.gov</a><p></p>\n<p>Giant Vapes will not be held liable for any injury, damage, or defect, permanent or temporary that may be caused by the improper use of these products. Please have a great understanding of the items you are using and how to store, use and care for your products properly. Terms and Conditions.</p>\n<p><b>WARNING:</b> This product can expose you to chemicals including Nicotine, which is known to the State of California to cause birth defects or other reproductive harm. For more information go to <a href=\"http://www.p65warnings.ca.gov\">www.P65Warnings.ca.gov</a></p>\n<p>This consumable nicotine product is not eligible for return, refund or exchange.</p>",
|
|
92
|
-
"Vape Disposable": "<p>There is always risk involved when using tobacco and nicotine products and/or rechargeable batteries, at any time and under any circumstances. Giant Vapes is not held responsible for any damage for any modification of the batteries, chargers, devices and other products that are sold on GiantVapes.com.</p>\n<p>Please Note: There is always risk involved when using rechargeable batteries at anytime and under any circumstances. Giant Vapes, LLC is not held responsible for any damage for any modification of the batteries, chargers, devices and other products that are sold on GiantVapes.com.</p>\n<p>Giant Vapes, LLC will not be held liable for any injury, damage, or defect, permanent or temporary that may be caused by the improper use of a Li-ion (Lithium-ion), LiPo (Lithium-ion Polymer) nor any rechargeable battery/batteries as well as chargers. Please have a great understanding of the batteries/chargers you are using and how to care for them properly. You can see a list of our recommendations for proper handling of rechargeable batteries in our terms and conditions</p>\n<p>This product can expose you to chemicals including Nicotine, which is known to the State of California to cause birth defects or other reproductive harm. For more information go to <a href=\"http://www.p65warnings.ca.gov\">www.P65Warnings.ca.gov</a><p></p>\n<p>Giant Vapes will not be held liable for any injury, damage, or defect, permanent or temporary that may be caused by the improper use of these products. Please have a great understanding of the items you are using and how to store, use and care for your products properly. Terms and Conditions.</p>\n<p><b>WARNING:</b> This product can expose you to chemicals including Nicotine, which is known to the State of California to cause birth defects or other reproductive harm. For more information go to <a href=\"http://www.p65warnings.ca.gov\">www.P65Warnings.ca.gov</a></p>"
|
|
93
|
-
}
|
|
94
|
-
}
|
|
@@ -1,194 +0,0 @@
|
|
|
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>
|
|
@@ -1,50 +0,0 @@
|
|
|
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
|
-
}
|
|
@@ -1,10 +0,0 @@
|
|
|
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
|
-
}
|