Skip to content

Commit e1af9ae

Browse files
plus-hiclaude
andcommitted
Add "In a gist" and "Skill Based Events" sections to Programs page, update community links to Instagram and LinkedIn
- Extract and add program icons from TL 2026 PDF (techladiesgather, techladieslearn, techladiestry, skill_events) - Add "In a gist" section with 3 hashtag categories on Programs page - Add "Skill Based Events" section between Mentorship and Meet/Community - Replace Facebook community links with Instagram on Programs and About pages - Add LinkedIn buttons alongside Instagram on both pages - Update community description text to reference LinkedIn and Instagram Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent de493ab commit e1af9ae

7 files changed

Lines changed: 81 additions & 8 deletions

File tree

305 KB
Loading
689 KB
Loading
328 KB
Loading
435 KB
Loading

src/data/programs.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ const programs = [
3535
<>
3636
Beyond programs and events, TechLadies is a community. Join us online
3737
for the latest industry news, highlights on awesome women in tech, and
38-
get support on your journey in tech on our Facebook group and Facebook
39-
page.
38+
get support on your journey in tech on our LinkedIn, Instagram and
39+
socials.
4040
</>
4141
),
4242
},

src/pages/about.js

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,21 @@ 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>
3543
<a
3644
className="btn btn-primary"
37-
href="https://www.facebook.com/groups/techladiescode/"
45+
href="https://www.linkedin.com/company/techladies"
3846
target="_blank"
3947
rel="noopener noreferrer"
4048
>
41-
Join our Community on Facebook
49+
Join us on LinkedIn
4250
</a>
4351
</div>
4452
</div>

src/pages/our-programs.js

Lines changed: 69 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ import Head from "next/head"
22

33
import { useEffect } from "react"
44

5-
import clsx from "clsx"
6-
75
import Accordion from "../components/Accordion"
86
import Gallery from "../components/Gallery"
97
import TestimonialCard from "../components/TestimonialCard"
@@ -51,6 +49,45 @@ export default function Home() {
5149
</div>
5250
</div>
5351
</div>
52+
<div className="container py-6">
53+
<h2 className="text-center mb-5">In a gist</h2>
54+
<div className="row gy-5 text-center">
55+
<div className="col-md-4">
56+
<img
57+
alt="#techladiesgather"
58+
className="thumbnail thumbnail-xxl mb-3"
59+
src={`${prefix}/icons/programs/icon_techladiesgather.png`}
60+
/>
61+
<h4 className="mb-3">#techladiesgather</h4>
62+
<p className="text-body">
63+
Networking and support to foster a feeling of community
64+
</p>
65+
</div>
66+
<div className="col-md-4">
67+
<img
68+
alt="#techladieslearn"
69+
className="thumbnail thumbnail-xxl mb-3"
70+
src={`${prefix}/icons/programs/icon_techladieslearn.png`}
71+
/>
72+
<h4 className="mb-3">#techladieslearn</h4>
73+
<p className="text-body">
74+
Peer-to-peer learning, hands-on and soft skills workshops
75+
</p>
76+
</div>
77+
<div className="col-md-4">
78+
<img
79+
alt="#techladiestry"
80+
className="thumbnail thumbnail-xxl mb-3"
81+
src={`${prefix}/icons/programs/icon_techladiestry.png`}
82+
/>
83+
<h4 className="mb-3">#techladiestry</h4>
84+
<p className="text-body">
85+
A wildcard social event - yoga/food/games and all things tech,
86+
under the sun!
87+
</p>
88+
</div>
89+
</div>
90+
</div>
5491
<div className="bg-gray">
5592
<div className="container py-6">
5693
<div id="mentorship" className="row gy-5">
@@ -90,6 +127,26 @@ export default function Home() {
90127
</div>
91128
</div>
92129
</div>
130+
<div className="container py-6 text-center">
131+
<div id="skill-events" className="row gy-5 justify-content-center">
132+
<div className="col-md-6">
133+
<img
134+
alt="Skill Based Events"
135+
className="thumbnail thumbnail-xl mb-4"
136+
src={`${prefix}/icons/programs/icon_skill_events.png`}
137+
/>
138+
<h3 className="mb-4 h4">Skill Based Events</h3>
139+
<p className="mb-4">
140+
Planned Byte sized events for the community to come together for
141+
enhancing soft skills and mentorship
142+
</p>
143+
144+
<button className="btn btn-primary" disabled>
145+
Coming Soon!
146+
</button>
147+
</div>
148+
</div>
149+
</div>
93150
<div className="container py-6 text-center">
94151
<div className="row gy-6">
95152
<div id="meet" className="col-md-5 offset-md-1">
@@ -125,13 +182,21 @@ export default function Home() {
125182
online for the latest industry news, highlights on awesome women
126183
in tech, and get support on your journey in tech.
127184
</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>
128193
<a
129194
className="btn btn-primary"
130-
href="https://www.facebook.com/groups/techladiescode"
195+
href="https://www.linkedin.com/company/techladies"
131196
target="_blank"
132197
rel="noreferrer"
133198
>
134-
Join us on Facebook
199+
Join us on LinkedIn
135200
</a>
136201
</div>
137202
</div>

0 commit comments

Comments
 (0)