/* VE GAMERZ — Membership (all tiers free; CTAs link to YouTube / Instagram). */
const { Button, Eyebrow, Badge, TierCard } = window.VEGAMERZDesignSystem_63bcb5;
const MD = window.VG_DATA;
const MS = window.VG;
const goOut = (href) => window.open(href, '_blank', 'noopener');
function Tiers() {
const { wrap, Reveal, SectionHead } = MS;
return (
Every tier is free — always
{MD.TIERS.map((t, i) => (
// {t.tag}
goOut(t.href)} style={{ height: '100%' }} />
{t.blurb}
))}
);
}
function PerkRow({ items }) {
const { Panel } = MS;
return (
{items.map((p, i) => (
◢
{p.t}
{p.d}
))}
);
}
function EarlyAccess() {
const { wrap, SectionHead } = MS;
return (
);
}
function CommunityBenefits() {
const { wrap, Reveal, Panel } = MS;
return (
The Community
More Than a Sub Count
The squad hangs out across YouTube and Instagram — live chats, community posts, game-night lobbies, and clip drops. Following in both places is how you never miss a beat and how you get pulled into the action.
Subscribe on YouTube
Follow on Instagram
{[
{ n: 'Weekly', l: 'Community game nights' },
{ n: 'First', l: 'Access to clips & news' },
{ n: '9.1K', l: 'And counting in the squad' }
].map((s, i) => (
{s.n}
{s.l}
))}
);
}
function JoinCta() {
const { wrap, Reveal } = MS;
return (
Ready to Rank Up With the Squad?
Pick your tier — or just hit subscribe and follow. Either way, you're in.
Subscribe on YouTube
Follow on Instagram
);
}
function MembershipScreen() {
return (
);
}
window.MembershipScreen = MembershipScreen;