Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated Twitter icon #62

Merged
merged 3 commits into from
Oct 5, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/webpack.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: NodeJS with Webpack

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x, 20.x, 22.x]

steps:
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Build
run: |
npm install
npx webpack
7 changes: 4 additions & 3 deletions src/theme/Footer/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from "react";
import { FaGithub, FaLinkedin, FaTwitter } from "react-icons/fa";
import { FaGithub, FaLinkedin,} from "react-icons/fa";
import {FaXTwitter} from 'react-icons/fa6';
import Link from "@docusaurus/Link";

const Footer: React.FC = () => {
Expand Down Expand Up @@ -82,7 +83,7 @@ const Footer: React.FC = () => {
rel="noopener noreferrer"
className="text-gray-400 hover:text-white transition duration-200"
>
<FaTwitter className="w-6 h-6" />
<FaXTwitter className="w-6 h-6" />
</Link>
</div>
</div>
Expand Down Expand Up @@ -113,4 +114,4 @@ const Footer: React.FC = () => {
);
};

export default Footer;
export default Footer;
Loading