Skip to content

Commit 10a0f8f

Browse files
plus-hiclaude
andcommitted
Fix button spacing and alignment for Instagram/LinkedIn links
- Wrap community buttons in flex container with centered alignment and gap - Standardize button text to "Join us on Instagram/LinkedIn" across pages Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e1af9ae commit 10a0f8f

2 files changed

Lines changed: 36 additions & 32 deletions

File tree

src/pages/about.js

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,24 @@ export default function Home() {
3232
Our community is for women in tech and women keen in switching
3333
careers into tech.
3434
</p>
35-
<a
36-
className="btn btn-primary me-2"
37-
href="https://www.instagram.com/techladiescode/"
38-
target="_blank"
39-
rel="noopener noreferrer"
40-
>
41-
Join our Community on Instagram
42-
</a>
43-
<a
44-
className="btn btn-primary"
45-
href="https://www.linkedin.com/company/techladies"
46-
target="_blank"
47-
rel="noopener noreferrer"
48-
>
49-
Join us on LinkedIn
50-
</a>
35+
<div className="d-flex flex-wrap gap-2">
36+
<a
37+
className="btn btn-primary"
38+
href="https://www.instagram.com/techladiescode/"
39+
target="_blank"
40+
rel="noopener noreferrer"
41+
>
42+
Join us on Instagram
43+
</a>
44+
<a
45+
className="btn btn-primary"
46+
href="https://www.linkedin.com/company/techladies"
47+
target="_blank"
48+
rel="noopener noreferrer"
49+
>
50+
Join us on LinkedIn
51+
</a>
52+
</div>
5153
</div>
5254
</div>
5355
</div>

src/pages/our-programs.js

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -182,22 +182,24 @@ export default function Home() {
182182
online for the latest industry news, highlights on awesome women
183183
in tech, and get support on your journey in tech.
184184
</p>
185-
<a
186-
className="btn btn-primary me-2"
187-
href="https://www.instagram.com/techladiescode/"
188-
target="_blank"
189-
rel="noreferrer"
190-
>
191-
Join us on Instagram
192-
</a>
193-
<a
194-
className="btn btn-primary"
195-
href="https://www.linkedin.com/company/techladies"
196-
target="_blank"
197-
rel="noreferrer"
198-
>
199-
Join us on LinkedIn
200-
</a>
185+
<div className="d-flex flex-wrap justify-content-center gap-2">
186+
<a
187+
className="btn btn-primary"
188+
href="https://www.instagram.com/techladiescode/"
189+
target="_blank"
190+
rel="noreferrer"
191+
>
192+
Join us on Instagram
193+
</a>
194+
<a
195+
className="btn btn-primary"
196+
href="https://www.linkedin.com/company/techladies"
197+
target="_blank"
198+
rel="noreferrer"
199+
>
200+
Join us on LinkedIn
201+
</a>
202+
</div>
201203
</div>
202204
</div>
203205
</div>

0 commit comments

Comments
 (0)