Skip to content

Commit d123e46

Browse files
authored
Merge pull request #249 from cbillowes/fix-github-references
fix: GitHub references from old Front-End-Coders-Mauritius to frontendmu
2 parents 9ca17ea + d7ff330 commit d123e46

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

cliff.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ body = """
4343
trim = true
4444
# postprocessors
4545
postprocessors = [
46-
{ pattern = '<REPO>', replace = "https://github.com/Front-End-Coders-Mauritius/frontend.mu" }, # replace repository URL
46+
{ pattern = '<REPO>', replace = "https://github.com/frontendmu/frontend.mu" }, # replace repository URL
4747
]
4848

4949
[git]

packages/frontendmu-astro/src/components/HomeSocialPresence.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import IconLinkedin from "./icons/icon-linkedin.astro";
2525
</SocialCard>
2626

2727
<SocialCard
28-
href="https://github.com/Front-End-Coders-Mauritius"
28+
href="https://github.com/frontendmu"
2929
class="bg-[#333] text-sm md:text-normal"
3030
>
3131
<p slot="tagline">GitHub</p>

packages/frontendmu-astro/src/components/MainMenu.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const links = {
2626
},
2727
github: {
2828
title: "Github",
29-
href: "https://github.com/Front-End-Coders-Mauritius",
29+
href: "https://github.com/frontendmu",
3030
class: "hidden md:block",
3131
},
3232
};

packages/frontendmu-astro/src/components/MegaMenu.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const links: TMenu = {
4949
},
5050
{
5151
title: "GitHub",
52-
href: "https://github.com/Front-End-Coders-Mauritius?ref=frontend.mu",
52+
href: "https://github.com/frontendmu?ref=frontend.mu",
5353
class: "",
5454
},
5555
{
@@ -75,7 +75,7 @@ const links: TMenu = {
7575
},
7676
github: {
7777
title: "Github",
78-
href: "https://github.com/Front-End-Coders-Mauritius",
78+
href: "https://github.com/frontendmu",
7979
class: "hidden md:block",
8080
},
8181
};

packages/frontendmu-astro/src/components/TeamComponent.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ const contributors: Contributor[] = Contributors;
153153
return (
154154
<li>
155155
<a
156-
href={`https://github.com/Front-End-Coders-Mauritius/frontendmu-astro/commits?author=${person.username}`}
156+
href={`https://github.com/frontendmu/frontend.mu/commits?author=${person.username}`}
157157
target="_blank"
158158
class="space-y-4"
159159
>

packages/frontendmu-nuxt/components/home/SocialPresence.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</template>
2323
</HomeSocialCard>
2424

25-
<HomeSocialCard href="https://github.com/Front-End-Coders-Mauritius" class="bg-[#333] text-sm md:text-normal">
25+
<HomeSocialCard href="https://github.com/frontendmu" class="bg-[#333] text-sm md:text-normal">
2626
<template #tagline>
2727
<p>GitHub</p>
2828
</template>

packages/frontendmu-nuxt/components/site/Menu.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ const links: TMenu = {
6767
},
6868
{
6969
title: "GitHub",
70-
href: "https://github.com/Front-End-Coders-Mauritius?ref=frontend.mu",
70+
href: "https://github.com/frontendmu?ref=frontend.mu",
7171
class: "",
7272
},
7373
{
@@ -197,7 +197,7 @@ onMounted(toggleHeader);
197197
</nav>
198198
<div>
199199
<div class="flex items-center gap-2">
200-
<!-- <a target="_blank" href="https://github.com/Front-End-Coders-Mauritius">
200+
<!-- <a target="_blank" href="https://github.com/frontendmu/frontend.mu/">
201201
<span class="sr-only">GitHub Repository</span>
202202
<Icon name="carbon:logo-github" class="w-4 h-4 text-verse-600 dark:text-verse-100" />
203203
</a> -->

packages/frontendmu-nuxt/pages/team.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ const NuxtLink = resolveComponent('NuxtLink')
9393

9494
<ul id="team" role="list" class="mx-auto grid grid-cols-2 gap-x-4 gap-y-8 sm:grid-cols-4 md:gap-x-6 lg:gap-x-8">
9595
<li v-for="person in contributors" :key="person.username">
96-
<a :href="`https://github.com/Front-End-Coders-Mauritius/frontendmu-astro/commits?author=${person.username}`"
96+
<a :href="`https://github.com/frontendmu/frontend.mu/commits/?author=${person.username}`"
9797
target="_blank" class="space-y-4">
9898
<img
9999
class="mx-auto h-20 w-20 rounded-full border-verse-2 shadow-lg 00 border p-2 lg:w-48 lg:h-48 profile-avatar"

0 commit comments

Comments
 (0)