Skip to content

Commit df1effc

Browse files
fix broken links and replace lorem text.
1 parent 69beffc commit df1effc

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

src/app/labels.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ export const LABELS = {
637637
role: 'Software Engineer',
638638
company: 'Bank Of America',
639639
quote:
640-
'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.',
640+
'The biggest benefit of the cohort was providing an environment to practice development in a collaborative team setting, which was something I couldn\'t get from just working on small projects alone. Working with others on a large project over 6 weeks gave me the confidence and skills I needed to excel during my internship, which eventually led to a full-time offer. I\'ve since had the opportunity to return as a cohort lead, continuing to build my leadership skills while giving back to the community that helped launch my career.',
641641
cohort: 'Cohort 8',
642642
image:
643643
'https://vpgsxqtnqt8tekgb.public.blob.vercel-storage.com/dsd-assets/people/aaryanDas.jpg',

src/app/meetups/page.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
import React from 'react';
1+
import { redirect } from 'next/navigation';
2+
import { externalLinks } from '@/app/_constants';
23

34
export default function MeetupsPage() {
4-
return <div>Meetups</div>;
5+
redirect(externalLinks.meetupUrl);
56
}

src/components/navbar/navbar.tsx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,9 @@ export default function Navbar() {
167167
<div className={styles.mobileNavFooter}>
168168
<div className={styles.socialLinks}>
169169
<a
170-
href='#'
170+
href={externalLinks.githubUrl}
171+
target='_blank'
172+
rel='noopener noreferrer'
171173
className={styles.socialLink}
172174
aria-label={LABELS.navbar.github}
173175
>
@@ -182,7 +184,9 @@ export default function Navbar() {
182184
</svg>
183185
</a>
184186
<a
185-
href='#'
187+
href={externalLinks.discordUrl}
188+
target='_blank'
189+
rel='noopener noreferrer'
186190
className={styles.socialLink}
187191
aria-label={LABELS.navbar.discord}
188192
>
@@ -197,7 +201,9 @@ export default function Navbar() {
197201
</svg>
198202
</a>
199203
<a
200-
href='#'
204+
href={externalLinks.linkedinUrl}
205+
target='_blank'
206+
rel='noopener noreferrer'
201207
className={styles.socialLink}
202208
aria-label={LABELS.navbar.linkedin}
203209
>

src/components/sponsorshipSection/sponsorshipSection.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,11 @@ export default function SponsorshipSection() {
6060
{LABELS.sponsorship.contact_us}
6161
</a>
6262
<a
63-
href='/assets/sponsor.png'
63+
href='https://vpgsxqtnqt8tekgb.public.blob.vercel-storage.com/dsd-assets/sponsor.png'
6464
download='DSD-Sponsorship-Info.png'
6565
className={styles.downloadButton}
66+
target='_blank'
67+
rel='noopener noreferrer'
6668
>
6769
{LABELS.sponsorship.download_one_pager}
6870
</a>

0 commit comments

Comments
 (0)