Skip to content

Commit 98a0bcf

Browse files
committed
add newsletter link and update interest form link
1 parent c401728 commit 98a0bcf

File tree

2 files changed

+43
-10
lines changed

2 files changed

+43
-10
lines changed

src/pages/Home.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const Home = () => {
3434

3535
<div className="flex flex-col sm:flex-row gap-6 justify-center items-center">
3636
<a
37-
href="https://forms.gle/nrsXrPFKA8CRn9P66"
37+
href="https://forms.gle/rD4XLxwZkxusCx5w5"
3838
target="_blank"
3939
rel="noopener noreferrer"
4040
>

src/pages/SignUp.tsx

Lines changed: 42 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { ExternalLink } from "lucide-react";
55
const SignUp = () => {
66
return (
77
<div className="min-h-screen py-16 px-4 bg-gradient-to-br from-bio-green/5 to-compute-blue/5">
8-
<div className="max-w-4xl mx-auto">
8+
<div className="max-w-7xl mx-auto">
99
<div className="text-center mb-12">
1010
<h1 className="text-5xl md:text-6xl font-bold mb-6 bg-gradient-bio bg-clip-text text-transparent">
1111
Join Our Community
@@ -15,7 +15,7 @@ const SignUp = () => {
1515
</p>
1616
</div>
1717

18-
<div className="grid md:grid-cols-2 gap-8">
18+
<div className="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
1919
{/* Sign Up Form */}
2020
<Card className="border-bio-green/20 hover:shadow-bio transition-all duration-300">
2121
<CardHeader>
@@ -26,7 +26,7 @@ const SignUp = () => {
2626
Sign up for our newsletter to receive updates about events, courses, and opportunities.
2727
</p>
2828
<iframe
29-
src="https://forms.gle/bj6YNehfFS5Ytd8N6"
29+
src="https://forms.gle/rD4XLxwZkxusCx5w5"
3030
width="100%"
3131
height="400"
3232
className="rounded-lg border border-bio-green/20"
@@ -36,7 +36,40 @@ const SignUp = () => {
3636
</iframe>
3737
<div className="mt-4">
3838
<a
39-
href="https://forms.gle/bj6YNehfFS5Ytd8N6"
39+
href="https://forms.gle/rD4XLxwZkxusCx5w5"
40+
target="_blank"
41+
rel="noopener noreferrer"
42+
>
43+
<EnhancedButton variant="bio-solid" size="lg">
44+
Open Form in New Tab
45+
<ExternalLink className="w-4 h-4" />
46+
</EnhancedButton>
47+
</a>
48+
</div>
49+
</CardContent>
50+
</Card>
51+
52+
{/* Newsletter Form */}
53+
<Card className="border-bio-green/20 hover:shadow-bio transition-all duration-300">
54+
<CardHeader>
55+
<CardTitle className="text-2xl text-bio-green text-center">Newsletter</CardTitle>
56+
</CardHeader>
57+
<CardContent className="text-center">
58+
<p className="text-muted-foreground mb-6">
59+
Subscribe to our newsletter for in-depth articles and exclusive content.
60+
</p>
61+
<iframe
62+
src="https://forms.gle/qCxn93mfunF3Dtep7"
63+
width="100%"
64+
height="400"
65+
className="rounded-lg border border-bio-green/20"
66+
title="Newsletter Form"
67+
>
68+
Loading...
69+
</iframe>
70+
<div className="mt-4">
71+
<a
72+
href="https://forms.gle/qCxn93mfunF3Dtep7"
4073
target="_blank"
4174
rel="noopener noreferrer"
4275
>
@@ -50,15 +83,15 @@ const SignUp = () => {
5083
</Card>
5184

5285
{/* Social Links */}
53-
<Card className="border-compute-blue/20 hover:shadow-compute transition-all duration-300">
86+
<Card className="border-compute-blue/20 hover:shadow-compute transition-all duration-300 flex flex-col">
5487
<CardHeader>
5588
<CardTitle className="text-2xl text-compute-blue text-center">Connect With Us</CardTitle>
5689
</CardHeader>
57-
<CardContent className="space-y-6">
58-
<div className="text-center">
90+
<CardContent className="flex-1 flex flex-col justify-center items-center space-y-6">
91+
<div className="text-center w-full">
5992
<h3 className="text-lg font-semibold mb-4">Follow us on social media</h3>
6093

61-
<div className="space-y-4">
94+
<div className="space-y-4 max-w-xs mx-auto">
6295

6396

6497
<EnhancedButton variant="bio-outline" size="lg" className="w-full">
@@ -73,7 +106,7 @@ const SignUp = () => {
73106
</div>
74107
</div>
75108

76-
<div className="pt-6 border-t border-border">
109+
<div className="pt-6 border-t border-border w-full max-w-xs">
77110
<p className="text-sm text-muted-foreground text-center">
78111
Questions? Reach out to us through any of these platforms, and we'll get back to you soon!
79112
</p>

0 commit comments

Comments
 (0)