Skip to content

Commit cbaf931

Browse files
committed
(chore) Update Social Media Links
Signed-off-by: Progyan Bhattacharya <bprogyan@gmail.com>
1 parent 8bb509c commit cbaf931

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

src/components/layout/footer.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const { className } = Astro.props;
2020
<a href="/" aria-label="Otjs homepage">Copyright &copy;</a>
2121
All rights reserved by
2222
<a
23-
href="https://github.com/0xTheProDev"
23+
href="https://0xtheprodev.gitlab.io"
2424
target="_blank"
2525
rel="noreferrer"
2626
class="font-medium underline underline-offset-4"

src/components/layout/social-media.astro

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,15 @@ const { className } = Astro.props;
1717
<span class="sr-only">GitHub</span>
1818
<Icon name="simple-icons:github" class="size-6" />
1919
</a>
20+
<a
21+
href={siteConfig.links.gitlab}
22+
target="_blank"
23+
rel="noreferrer"
24+
class="inline"
25+
>
26+
<span class="sr-only">GitLab</span>
27+
<Icon name="simple-icons:gitlab" class="size-6" />
28+
</a>
2029
<a
2130
href={siteConfig.links.twitter}
2231
target="_blank"

src/config/site.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ export const siteConfig: SiteConfig = {
99
ogImage: "https://ot.js.org/og.jpg",
1010
links: {
1111
discord: "https://discord.gg/theprodev",
12-
github: "https://github.com/0xTheProDev/Operational-Transformation",
13-
linkedin: "https://linkedin.com/in/progyan-bhattacharya",
12+
github: "https://github.com/0xTheProDev",
13+
gitlab: "https://gitlab.com/0xTheProDev",
14+
linkedin: "https://linkedin.com/in/theprodev",
1415
twitter: "https://twitter.com/ProDevOfficial",
1516
},
1617
};

src/pages/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ import Icon from "astro-icon";
139139
<h3 class="font-bold">Still not Convinced?</h3>
140140
<p class="text-sm text-muted-foreground">
141141
Reach out to <a
142-
href="https://twitter.com/ProDevOfficial"
142+
href="https://calendly.com/theprodev"
143143
target="_blank"
144144
rel="noreferrer"
145145
class="underline underline-offset-4"

src/types/index.d.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,16 @@ export type SidebarNavItem = {
3030

3131
export type SiteConfig = {
3232
name: string;
33+
shortName: string;
3334
description: string;
3435
url: string;
3536
ogImage: string;
3637
links: {
37-
twitter: string;
38+
discord: string;
39+
gitlab: string;
3840
github: string;
41+
linkedin: string;
42+
twitter: string;
3943
};
4044
};
4145

0 commit comments

Comments
 (0)