Skip to content

Commit 1deab62

Browse files
committed
Replace broken iframe embed with direct Brevo signup link
1 parent d8ad8ac commit 1deab62

File tree

1 file changed

+4
-44
lines changed

1 file changed

+4
-44
lines changed

src/routes/augmentum/+page.svelte

Lines changed: 4 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import Overview from '$lib/Overview.svelte';
1515
import PillarList from '$lib/PillarList.svelte';
1616
import CtaSection from '$lib/CtaSection.svelte';
17-
import { AUGMENTUM_SIGNUP_URL, HAS_EMBED_SIGNUP } from '$lib/marketing';
17+
import { AUGMENTUM_SIGNUP_URL } from '$lib/marketing';
1818
1919
const pillars = [
2020
{
@@ -77,25 +77,9 @@
7777
sovereign stack.
7878
</p>
7979

80-
{#if HAS_EMBED_SIGNUP}
81-
<div class="signup-shell">
82-
<iframe
83-
src={AUGMENTUM_SIGNUP_URL}
84-
title="Augmentum OS launch briefing signup"
85-
loading="lazy"
86-
referrerpolicy="no-referrer-when-downgrade"
87-
></iframe>
88-
</div>
89-
90-
<div class="launch-links">
91-
<a class="btn-secondary" href={AUGMENTUM_SIGNUP_URL} target="_blank" rel="noreferrer">OPEN FORM IN NEW TAB</a>
92-
</div>
93-
{:else}
94-
<div class="launch-links">
95-
<a class="btn-primary" href={AUGMENTUM_SIGNUP_URL}>NOTIFY ME AT LAUNCH →</a>
96-
</div>
97-
<p class="launch-fallback">Form embedding is unavailable in this environment. Use the direct signup link above.</p>
98-
{/if}
80+
<div class="launch-links">
81+
<a class="btn-primary" href={AUGMENTUM_SIGNUP_URL} target="_blank" rel="noreferrer">GET THE BRIEFING →</a>
82+
</div>
9983

10084
<p class="launch-note">Double opt-in enabled. Unsubscribe anytime.</p>
10185
</div>
@@ -145,20 +129,6 @@
145129
color: var(--text-secondary);
146130
}
147131
148-
.signup-shell {
149-
border: 1px solid var(--border);
150-
background: var(--surface);
151-
backdrop-filter: blur(6px);
152-
overflow: hidden;
153-
}
154-
155-
.signup-shell iframe {
156-
width: 100%;
157-
min-height: clamp(620px, 78vh, 820px);
158-
border: none;
159-
background: transparent;
160-
}
161-
162132
.launch-links {
163133
display: flex;
164134
gap: var(--space-lg);
@@ -172,19 +142,9 @@
172142
text-transform: uppercase;
173143
}
174144
175-
.launch-fallback {
176-
color: var(--text-muted);
177-
font-size: var(--fs-body-xs);
178-
max-width: none;
179-
}
180-
181145
@media (max-width: 768px) {
182146
.launch-briefing {
183147
padding: var(--space-5xl) var(--space-xl);
184148
}
185-
186-
.signup-shell iframe {
187-
min-height: 760px;
188-
}
189149
}
190150
</style>

0 commit comments

Comments
 (0)