Skip to content

Commit a46c399

Browse files
committed
fix: point newsletter popup legal links to real Substack URLs (#1986)
1 parent 747b989 commit a46c399

1 file changed

Lines changed: 19 additions & 4 deletions

File tree

src/components/NewsLetterPopup.tsx

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,15 +97,30 @@ const NewsletterPopup = () => {
9797

9898
<p className="mb-4 text-xs text-gray-500">
9999
By subscribing, I agree to Substack’s{" "}
100-
<a href="#" className="underline hover:text-blue-600">
100+
<a
101+
href="https://substack.com/tos"
102+
target="_blank"
103+
rel="noreferrer"
104+
className="underline hover:text-blue-600"
105+
>
101106
Terms of Use
102107
</a>{" "}
103108
and acknowledge its{" "}
104-
<a href="#" className="underline hover:text-blue-600">
109+
<a
110+
href="https://substack.com/privacy"
111+
target="_blank"
112+
rel="noreferrer"
113+
className="underline hover:text-blue-600"
114+
>
105115
Information Collection Notice
106116
</a>{" "}
107117
and{" "}
108-
<a href="#" className="underline hover:text-blue-600">
118+
<a
119+
href="https://substack.com/privacy"
120+
target="_blank"
121+
rel="noreferrer"
122+
className="underline hover:text-blue-600"
123+
>
109124
Privacy Policy
110125
</a>
111126
.
@@ -123,4 +138,4 @@ const NewsletterPopup = () => {
123138
);
124139
};
125140

126-
export default NewsletterPopup;
141+
export default NewsletterPopup;

0 commit comments

Comments
 (0)