Skip to content

Commit

Permalink
Merge pull request #15 from barranquillajs/adding-discord
Browse files Browse the repository at this point in the history
feat: replace whatsapp with discord
  • Loading branch information
lporras committed Jun 16, 2023
2 parents 01eaeed + e6afea3 commit 0ee8ce9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 23 deletions.
17 changes: 3 additions & 14 deletions .github/workflows/pullRequestFlow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Use Node.js 16
- name: Use Node.js 18.16.0
uses: actions/setup-node@v1
with:
node-version: 16.14.2

- name: Read version from package.json
uses: culshaw/read-package-node-version-actions@v1
id: package-node-version
node-version: 18.16.0

- name: Install
env:
VERSION: ${{ steps.package-node-version.outputs.version }}
run: |
echo "Version is ${{ env.VERSION }}"
yarn install
- name: Build
run: |
yarn build
- name: Linter check
run: |
yarn lint
yarn lint
8 changes: 4 additions & 4 deletions components/footer/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FaInstagramSquare, FaLinkedin, FaMeetup, FaTiktok, FaTwitterSquare, FaWhatsapp, FaYoutubeSquare, FaTwitch } from 'react-icons/fa';
import { FaInstagramSquare, FaLinkedin, FaMeetup, FaTiktok, FaTwitterSquare, FaDiscord, FaYoutubeSquare, FaTwitch } from 'react-icons/fa';
import cn from 'classnames';

import {
Expand All @@ -8,7 +8,7 @@ import {
LINK_BARRANQUILLA_TIKTOK,
LINK_BARRANQUILLA_TWITCH,
LINK_BARRANQUILLA_TWITTER,
LINK_BARRANQUILLA_WHATSAPP,
LINK_BARRANQUILLA_DISCORD,
LINK_BARRANQUILLA_YOUTUBE,
} from '@/constants';

Expand All @@ -26,8 +26,8 @@ export const Footer = () => {
<a className={classes.item} href={LINK_BARRANQUILLA_MEETUP} target="_blank" rel="noreferrer" aria-label="Link hacia meetup">
<FaMeetup />
</a>
<a className={classes.item} href={LINK_BARRANQUILLA_WHATSAPP} target="_blank" rel="noreferrer" aria-label="Link hacia whatsapp">
<FaWhatsapp />
<a className={classes.item} href={LINK_BARRANQUILLA_DISCORD} target="_blank" rel="noreferrer" aria-label="Link hacia discord">
<FaDiscord />
</a>
<a className={classes.item} href={LINK_BARRANQUILLA_TIKTOK} target="_blank" rel="noreferrer" aria-label="Link hacia tiktok">
<FaTiktok />
Expand Down
8 changes: 4 additions & 4 deletions components/header/header.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import cn from 'classnames';
import Image from 'next/image';
import Link from 'next/link';
import { FaTwitterSquare, FaLinkedin, FaWhatsapp, FaMeetup, FaInstagramSquare, FaTiktok, FaTwitch, FaYoutubeSquare } from 'react-icons/fa';
import { FaTwitterSquare, FaLinkedin, FaMeetup, FaInstagramSquare, FaTiktok, FaTwitch, FaYoutubeSquare, FaDiscord } from 'react-icons/fa';

import {
LINK_BARRANQUILLA_INSTAGRAM,
Expand All @@ -10,8 +10,8 @@ import {
LINK_BARRANQUILLA_TIKTOK,
LINK_BARRANQUILLA_TWITCH,
LINK_BARRANQUILLA_TWITTER,
LINK_BARRANQUILLA_WHATSAPP,
LINK_BARRANQUILLA_YOUTUBE,
LINK_BARRANQUILLA_DISCORD,
} from '@/constants';
import headerimage from '@/public/assets/BAQJS.png';

Expand All @@ -32,8 +32,8 @@ export const Header = () => {
<a className={classes.item} href={LINK_BARRANQUILLA_MEETUP} target="_blank" rel="noreferrer" aria-label="Link hacia meetup">
<FaMeetup />
</a>
<a className={classes.item} href={LINK_BARRANQUILLA_WHATSAPP} target="_blank" rel="noreferrer" aria-label="Link hacia whatsapp">
<FaWhatsapp />
<a className={classes.item} href={LINK_BARRANQUILLA_DISCORD} target="_blank" rel="noreferrer" aria-label="Link hacia discord">
<FaDiscord />
</a>
<a className={classes.item} href={LINK_BARRANQUILLA_TIKTOK} target="_blank" rel="noreferrer" aria-label="Link hacia tiktok">
<FaTiktok />
Expand Down
2 changes: 1 addition & 1 deletion constants/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const LINK_BARRANQUILLA_MEETUP = 'https://www.meetup.com/es/barranquillajs';
export const LINK_BARRANQUILLA_LINKEDIN = 'https://www.linkedin.com/company/89602992';
export const LINK_BARRANQUILLA_WHATSAPP = 'https://chat.whatsapp.com/Cgkiea91hbpH2kErkjrmxb';
export const LINK_BARRANQUILLA_DISCORD = 'https://bit.ly/3Nb3Eon';
export const LINK_BARRANQUILLA_TWITTER = 'https://twitter.com/baq_js';
export const LINK_BARRANQUILLA_INSTAGRAM = 'https://www.instagram.com/barranquilla.js/';
export const LINK_BARRANQUILLA_TIKTOK = 'https://www.tiktok.com/@barranquillajs';
Expand Down

0 comments on commit 0ee8ce9

Please sign in to comment.