File tree 3 files changed +5
-7
lines changed
3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ const socialLinks = siteInfo.socialLinks
100
100
aria-label =" Secondary"
101
101
class =" flex flex-col items-start justify-between gap-12 py-8 sm:flex-row-reverse md:py-12"
102
102
>
103
- <NewsLetterSignup tag = " footer " />
103
+ <NewsLetterSignup />
104
104
<div class =" grid grid-cols-2 gap-12 sm:flex sm:flex-wrap sm:gap-16 lg:gap-20" >
105
105
{
106
106
groups .map (({ title , items }, index ) => (
Original file line number Diff line number Diff line change 1
1
---
2
2
interface Props {
3
3
skipText? : boolean
4
- tag? : string
5
4
}
6
- const { skipText = false , tag } = Astro .props
5
+
6
+ const { skipText = false } = Astro .props
7
7
---
8
8
9
9
<div class ={ ` ${skipText ? " mx-auto" : " " } flex flex-col self-center md:max-w-sm ` } >
@@ -21,9 +21,7 @@ const { skipText = false, tag } = Astro.props
21
21
action =" https://buttondown.email/api/emails/embed-subscribe/withastro"
22
22
method =" post"
23
23
target =" popupwindow"
24
- onsubmit ={ ` window.open('https://buttondown.email/withastro${
25
- tag ? ` ?tag=${tag } ` : ` `
26
- }', 'popupwindow') ` }
24
+ onsubmit =" window .open (' https:// buttondown.email/withastro', 'popupwindow')"
27
25
class =" flex flex-col justify-between"
28
26
>
29
27
<input
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import Houston from "../_assets/houston_peep.webp"
14
14
Enter your email to stay in the know with the latest updates from Astro.
15
15
</p >
16
16
<div class =" w-full" >
17
- <NewsLetterSignup tag = " page " skipText ={ true } />
17
+ <NewsLetterSignup skipText ={ true } />
18
18
</div >
19
19
</div >
20
20
<div class =" flex w-full justify-center overflow-clip" >
You can’t perform that action at this time.
0 commit comments