Skip to content

Commit a4e46c2

Browse files
Merge pull request #621 from reach2saksham/fix/gitlab-icon-remove
fix: remove GitLab social icon from relevant locations in landing page
2 parents 6ed4d8e + c39bc45 commit a4e46c2

File tree

4 files changed

+5
-17
lines changed

4 files changed

+5
-17
lines changed

src/app/apply/page.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { TimelineElement } from '@/components/about/TimelineElement'
66
import { ApplyHeader } from '@/components/apply/ApplyHeader'
77
import GSoC from '@/images/logo.svg'
88
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
9-
import { faDiscord, faGitlab } from '@fortawesome/free-brands-svg-icons'
9+
import { faDiscord, faGithub } from '@fortawesome/free-brands-svg-icons'
1010
import { faLightbulb, faComments, faPaperPlane } from '@fortawesome/free-solid-svg-icons'
1111

1212
export const metadata = {
@@ -29,7 +29,7 @@ export default function Apply() {
2929
title="Start Contributing"
3030
description="Contribute to the project and make your mark on open-source development with AOSSIE. By making a Pull Request (PR) to one of our existing projects, you'll have the opportunity to showcase your skills and demonstrate your understanding of the project. This will also give you an opportunity to work with the mentors and get familiar with the project before the official GSoC coding period starts. This is a great way to get started and increase your chances of being selected for the program."
3131
button="Contribute"
32-
link="https://gitlab.com/aossie"
32+
link="https://github.com/AOSSIE-Org"
3333
/>
3434
<TimelineElement
3535
title="Write a Draft Application"

src/app/page.jsx

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import { faEnvelope } from '@fortawesome/free-solid-svg-icons'
1111
import {
1212
faDiscord,
1313
faGithub,
14-
faGitlab,
1514
faTwitter,
1615
faYoutube
1716
} from '@fortawesome/free-brands-svg-icons'
@@ -95,14 +94,6 @@ export default function Home() {
9594
>
9695
<FontAwesomeIcon icon={faEnvelope} size="2xl" />
9796
</Link>
98-
<Link
99-
target="_blank"
100-
aria-label="Follow on GitLab"
101-
className="text-zinc-500 transition hover:text-[#00843D] dark:text-zinc-400 dark:hover:text-yellow-400"
102-
href="https://gitlab.com/aossie"
103-
>
104-
<FontAwesomeIcon icon={faGitlab} size="2xl" />
105-
</Link>
10697
<Link
10798
target="_blank"
10899
aria-label="Follow on GitHub"

src/components/apply/ApplyHeader.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
import { Container } from '@/components/shared/Container'
44
import { motion } from 'framer-motion'
55
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
6-
import { faDiscord, faGitlab } from '@fortawesome/free-brands-svg-icons'
6+
import { faDiscord, faGithub} from '@fortawesome/free-brands-svg-icons'
77
import { faLightbulb, faComments, faPaperPlane } from '@fortawesome/free-solid-svg-icons'
88

99
export function ApplyHeader({ children }) {
1010
const steps = [
1111
{ icon: faDiscord, label: "Join Discord" },
12-
{ icon: faGitlab, label: "Start Contributing" },
12+
{ icon: faGithub, label: "Start Contributing" },
1313
{ icon: faLightbulb, label: "Choose Idea" },
1414
{ icon: faComments, label: "Discuss" },
1515
{ icon: faPaperPlane, label: "Submit App" },

src/components/shared/Footer.jsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { motion } from 'framer-motion'
66
import { Container } from '@/components/shared/Container'
77
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
88
import { faEnvelope } from '@fortawesome/free-solid-svg-icons'
9-
import { faDiscord, faGithub, faGitlab, faTwitter } from '@fortawesome/free-brands-svg-icons'
9+
import { faDiscord, faGithub, faTwitter } from '@fortawesome/free-brands-svg-icons'
1010

1111
function NavLink({ href, children }) {
1212
return (
@@ -59,9 +59,6 @@ export function Footer() {
5959
<Link aria-label="Contact by Mail" className='text-zinc-500 hover:text-[#00843D] dark:text-zinc-400 dark:hover:text-yellow-400 transition' href='mailto:aossie.oss@gmail.com'>
6060
<FontAwesomeIcon icon={faEnvelope} size='xl' />
6161
</Link>
62-
<Link aria-label="Follow on GitLab" className='text-zinc-500 hover:text-[#00843D] dark:text-zinc-400 dark:hover:text-yellow-400 transition' href='https://gitlab.com/aossie'>
63-
<FontAwesomeIcon icon={faGitlab} size='xl' />
64-
</Link>
6562
<Link aria-label="Follow on GitHub" className='text-zinc-500 hover:text-[#00843D] dark:text-zinc-400 dark:hover:text-yellow-400 transition' href='https://github.com/AOSSIE-Org'>
6663
<FontAwesomeIcon icon={faGithub} size='xl' />
6764
</Link>

0 commit comments

Comments
 (0)